Skip to content

Instantly share code, notes, and snippets.

@dahlbyk
Created August 13, 2011 16:16
Show Gist options
  • Save dahlbyk/1143996 to your computer and use it in GitHub Desktop.
Save dahlbyk/1143996 to your computer and use it in GitHub Desktop.
Set "Allow Interact with Desktop" for Windows Service
$svcName = Get-Service -DisplayName *cruise* | select -Exp Name
$svcKey = Get-Item HKLM:\SYSTEM\CurrentControlSet\Services\$svcName
# Set 9th bit, from http://www.codeproject.com/KB/install/cswindowsservicedesktop.aspx
$newType = $svcKey.GetValue('Type') -bor 0x100
Set-ItemProperty $svcKey.PSPath -Name Type -Value $newType
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment