Get number of all desktops in Citrx Xendesktop with powershell in all desktop groups
Thursday, October 27th, 2011 Posted in Powershell, Programmering | No Comments »To get sum of all desktops in the Citrix Xendesktop (5) farm, just run this commands: Asnp Citrix.* Get-BrokerDesktopGroup | measure-object -property TotalDesktops -sum | select sum
Remove-RoutingGroupConnector – The operation couldn’t be performed because ‘rg-exchange’ matches multiple entries.
Wednesday, September 28th, 2011 Posted in Exchange, Powershell | No Comments »I have this problems that i could delete a routinggroup between an old Exchange 2003 and a new Exchange 2010. When i type Get-RoutingGroupConnector Name ...
Give all users access to all mailbox calendar
Monday, February 14th, 2011 Posted in Exchange, Powershell | No Comments »foreach ($Mailbox in (Get-Mailbox -ResultSize Unlimited)) { Add-MailboxFolderPermission -identity "$($Mailbox.Name):\calendar" -AccessRights Author -User default }
Powershell – Get all Security Groups from AD
Thursday, January 27th, 2011 Posted in Powershell | No Comments »First install http://www.quest.com/powershell/activeroles-server.aspx Add-PSSnapin Quest.ActiveRoles.ADManagement -ErrorAction SilentlyContinue $File = “C:\ita\securitygroups.txt” $AllGroups = get-qadgroup -grouptype "Security" | select name, Description $AllGroups | Foreach { echo "" echo "" echo $_.name echo $_.description } | out-File $File
Powershell – Export user/mailboxes to CSV file
Thursday, January 27th, 2011 Posted in Powershell | No Comments »get-mailbox | select name, alias, samaccountname, RecipientType, RecipientTypeDetails, displayname | export-csv C:\ITA\usersexport.csv -encoding unicode
Powershell – Import users from CSV file
Thursday, January 27th, 2011 Posted in Powershell | No Comments »import-csv user.csv | foreach-object { echo $_.Displayname New-Mailbox -name ( $_.Name)` -Alias $_.Alias` -SamAccountName $_.SamAccountName` -RecipientType $_.RecipientType` -RecipientTypeDetails $_.RecipientTypeDetails` -Displayname $_.Displayname` }
Powershell – Show all users in DistributionGroup
Thursday, January 27th, 2011 Posted in Powershell | No Comments »$File = "C:\ita\groupslog.txt" $Mailboxes = Get-DistributionGroup | select name , alias ,displayname,EmailAddresses $Mailboxes | ForEach { echo "" echo "" echo $_.name Get-DistributionGroupMember -id $_.alias } | out-File $File
Powershell – Show witch users have access to mailboxes
Thursday, January 27th, 2011 Posted in Powershell | No Comments »$file = "C:\ita\fulladgang.txt" $AllUsers = get-mailbox | select SamAccountName, name, alias $AllUsers | Foreach { echo "" echo "" echo "" echo $_.name get-mailboxfolderpermission -identity $Mailbox } | out-File $File
Powershell get all users with title = “Interneservices” – Search on title on get-user
Thursday, January 27th, 2011 Posted in Powershell | No Comments »get-user -filter {Title -eq "InterneServices"} | select name
Powershell – Get Mailbox permission search on title = InterneServices
Thursday, January 27th, 2011 Posted in Powershell | No Comments »$File = "C:\ita\fulldadgang-services.txt" $AllUsers = get-user -filter {Title -eq "InterneServices"} | select name $AllUsers | Foreach { echo "" echo "" echo "" echo $_.name Get-MailboxPermission -identity $_.name } | out-File $File