Monthly Archive: October 2012
If you want to search the last 72 hours after mails sent to email recepitions on domain kennethdalbjerg.dk, you can run this command
Get-MessageTrackingLog -Start ( Get-Date ) . AddHours ( -72 ) -ResultSize unlimited | Where-Object { $_ . recipients -like "*@kennethdalbjerg.dk" }
Citrix / Xenserver
October 11, 2012
by
admin
· Published October 11, 2012
· Last modified January 2, 2013
I have this error: Moving VM “VDINAME” to “VDINAME” on “Storage” This operation cannot be performed because this VDI OpaqueRef:8d37bee1-f85b-fb22-e47e-1b8f48b68b84 is in use by some other operation – copy When i was try moving...
Citrix
October 10, 2012
by
admin
· Published October 10, 2012
· Last modified October 17, 2012
Example: If you want to log off user after 120 minutes of disconnect time. You can set this up though Powershell
ASNP Citrix . *
set -BrokerDesktopGroup -name "Desktop Group Name" -OffPeakDisconnectTimeout 120
set -BrokerDesktopGroup -name "Desktop Group Name" -OffPeakExtendedDisconnectTimeout 120
set -BrokerDesktopGroup -name "Desktop Group Name" -PeakDisconnectTimeout 120
set -BrokerDesktopGroup -name "Desktop Group Name" -PeakExtendedDisconnectTimeout 120
set -BrokerDesktopGroup -name "Desktop Group Name" -OffPeakDisconnectTimeout 120
set -BrokerDesktopGroup -name "Desktop Group Name" -OffPeakExtendedDisconnectAction "shutdown"
set -BrokerDesktopGroup -name "Desktop Group Name" -OffPeakExtendedDisconnectAction "shutdown"
set -BrokerDesktopGroup -name "Desktop Group Name" -PeakDisconnectAction "shutdown"
set -BrokerDesktopGroup -name "Desktop Group Name" -PeakExtendedDisconnectAction "shutdown"
set -BrokerDesktopGroup -name "Desktop Group Name" -OffPeakDisconnectAction "shutdown"
Citrix
October 10, 2012
by
admin
· Published October 10, 2012
If you want to change a desktop group logoff behavior, this is done by PowerShell. To turn off shutdown af use:
ASNP Citrix . *
Set -BrokerDesktopGroup -Name "Desktop Group Name" -ShutdownDesktopsAfterUse $ FALSE
To turn on shutdown af use:
ASNP Citrix . *
Set -BrokerDesktopGroup -Name "Desktop Group Name" -ShutdownDesktopsAfterUse $ TRUE
If you need to get...
Citrix / Xenserver
October 9, 2012
by
admin
· Published October 9, 2012
· Last modified January 2, 2013
Today i should convert a machine with XenConvert to XenServer, but it come with these errors: Failed to discover 1 of 2 volumes on the destination disk! Enable Automount on windows server Enterprise edition...
This command will kill all instance from
kill $ ( ps aux | grep 'samba' | awk '{print $2}' )
Sidste kommentar