Last active
September 27, 2023 11:24
-
-
Save rysstad/b9c7f66566423035f7ec30fe5c067d8a to your computer and use it in GitHub Desktop.
Revisions
-
rysstad revised this gist
Jun 14, 2019 . 1 changed file with 7 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,15 +3,16 @@ <App DisplayName="Computer Manager" FileName="%WINDIR%\system32\compmgmt.msc" Arguments="/Computer=%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Explorer - C: " FileName="%WINDIR%\explorer.exe" Arguments="\\%HostName%\c$" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Explorer - E:" FileName="%WINDIR%\explorer.exe" Arguments="\\%HostName%\e$" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Powershell - CredSSP" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -NoExit -Command "&{ Set-Location -Path C:\Temp\ ; $host.ui.RawUI.WindowTitle= '%Hostname%' ; Enter-PSSession -Authentication CredSSP -ComputerName %Hostname% -EnableNetworkAccess -Credential $(Get-Credential -Message 'Log on %Hostname% ') }"" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="False" /> <App DisplayName="Powershell - Current user" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -ExecutionPolicy Bypass -NoExit -Command "&{ Set-Location -Path C:\Temp\ ; $host.ui.RawUI.WindowTitle = '%Hostname%' ; Enter-PSSession -ComputerName %Hostname% -EnableNetworkAccess }"" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="SQL Server Manager" FileName=""C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Common7\IDE\Ssms.exe"" Arguments="-S %Hostname%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Event Viewer" FileName="%WINDIR%\system32\eventvwr.exe" Arguments="%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-MultiMonitor" FileName="C:\Windows\System32\mstsc.exe" Arguments="/multimon /v:%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="False" /> <App DisplayName="RemoteDesktop-1400x900" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /w:1400 /h:900" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="False" /> <App DisplayName="Telegraf endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments="-app=http://%HostName%:9273/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="False" /> <App DisplayName="wmi_exporter endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments="-app=http://%HostName%:9182/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="False" /> <App DisplayName="RemoteDesktop-Shadow" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /shadow:1 /control /noConsentPrompt /w:1400 /h:900" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Services" FileName="services.msc" Arguments="/computer:%hostname%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Splunk" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments="-app=https://splunk.skead.no/en-US/app/search/search?q=search%20ComputerName%3D%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Hostname to clipboard" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -NoLogo -WindowStyle Hidden -Command "&{ '%Hostname%' | Set-Clipboard}; exit"" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> </Apps> -
rysstad revised this gist
Feb 1, 2019 . 1 changed file with 6 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,11 +5,13 @@ <App DisplayName="Explorer - E:" FileName="%WINDIR%\explorer.exe" Arguments="\\%HostName%\e$" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Powershell - CredSSP" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -NoExit -Command "&{ Set-Location -Path C:\Temp\ ; $host.ui.RawUI.WindowTitle= '%Hostname%' ; Enter-PSSession -Authentication CredSSP -ComputerName %Hostname% -EnableNetworkAccess -Credential $(Get-Credential -Message 'Log on %Hostname% ') }"" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Powershell - Current user" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -ExecutionPolicy Bypass -NoExit -Command "&{ Set-Location -Path C:\Temp\ ; $host.ui.RawUI.WindowTitle = '%Hostname%' ; Enter-PSSession -ComputerName %Hostname% -EnableNetworkAccess }"" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="SQL Server Manager" FileName=""C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Common7\IDE\Ssms.exe"" Arguments="-S %Hostname%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Event Viewer" FileName="%WINDIR%\system32\eventvwr.exe" Arguments="%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-MultiMonitor" FileName="C:\Windows\System32\mstsc.exe" Arguments="/multimon /v:%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-1400x900" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /w:1400 /h:900" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Telegraf endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments="-app=http://%HostName%:9273/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="wmi_exporter endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments="-app=http://%HostName%:9182/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-Shadow" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /shadow:1 /control /noConsentPrompt /w:1400 /h:900" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Services" FileName="services.msc" Arguments="/computer:%hostname%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Splunk" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments="-app=https://XXXXXXX/en-US/app/search/search?q=search%20ComputerName%3D%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> </Apps> -
rysstad revised this gist
Jan 30, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ <App DisplayName="Explorer - E:" FileName="%WINDIR%\explorer.exe" Arguments="\\%HostName%\e$" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Powershell - CredSSP" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -NoExit -Command "&{ Set-Location -Path C:\Temp\ ; $host.ui.RawUI.WindowTitle= '%Hostname%' ; Enter-PSSession -Authentication CredSSP -ComputerName %Hostname% -EnableNetworkAccess -Credential $(Get-Credential -Message 'Log on %Hostname% ') }"" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Powershell - Current user" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -ExecutionPolicy Bypass -NoExit -Command "&{ Set-Location -Path C:\Temp\ ; $host.ui.RawUI.WindowTitle = '%Hostname%' ; Enter-PSSession -ComputerName %Hostname% -EnableNetworkAccess }"" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="SQL Server Management" FileName=""C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Common7\IDE\Ssms.exe"" Arguments="-S %Hostname%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Event Viewer" FileName="%WINDIR%\system32\eventvwr.exe" Arguments="%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-MultiMonitor" FileName="C:\Windows\System32\mstsc.exe" Arguments="/multimon /v:%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-1400x900" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /w:1400 /h:900" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> -
rysstad revised this gist
Jan 22, 2019 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,8 +8,8 @@ <App DisplayName="SQL Server Manager" FileName=""C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Common7\IDE\Ssms.exe"" Arguments="-S %Hostname%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Event Viewer" FileName="%WINDIR%\system32\eventvwr.exe" Arguments="%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-MultiMonitor" FileName="C:\Windows\System32\mstsc.exe" Arguments="/multimon /v:%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-1400x900" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /w:1400 /h:900" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Telegraf endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments=" -app=http://%HostName%:9273/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="wmi_exporter endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments=" -app=http://%HostName%:9182/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-Shadow" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /shadow:1 /control /w:1400 /h:900" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> </Apps> -
rysstad revised this gist
Jan 22, 2019 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,4 +11,5 @@ <App DisplayName="RemoteDesktop-1500x1000" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /w:1500 /h:1000" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Telegraf endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments=" -app=http://%HostName%:9273/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="wmi_exporter endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments=" -app=http://%HostName%:9182/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-shadow" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /shadow:1 /control /w:1400 /h:1000" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> </Apps> -
rysstad revised this gist
Jan 17, 2019 . 1 changed file with 11 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,14 @@ <?xml version="1.0" encoding="utf-8"?> <Apps> <App DisplayName="Computer Manager" FileName="%WINDIR%\system32\compmgmt.msc" Arguments="/Computer=%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Explorer - C: " FileName="%WINDIR%\explorer.exe" Arguments="\\%HostName%\c$" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Explorer - E:" FileName="%WINDIR%\explorer.exe" Arguments="\\%HostName%\e$" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Powershell - CredSSP" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -NoExit -Command "&{ Set-Location -Path C:\Temp\ ; $host.ui.RawUI.WindowTitle= '%Hostname%' ; Enter-PSSession -Authentication CredSSP -ComputerName %Hostname% -EnableNetworkAccess -Credential $(Get-Credential -Message 'Log on %Hostname% ') }"" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Powershell - Current user" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -ExecutionPolicy Bypass -NoExit -Command "&{ Set-Location -Path C:\Temp\ ; $host.ui.RawUI.WindowTitle = '%Hostname%' ; Enter-PSSession -ComputerName %Hostname% -EnableNetworkAccess }"" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="SQL Server Manager" FileName=""C:\Program Files (x86)\Microsoft SQL Server Management Studio 18\Common7\IDE\Ssms.exe"" Arguments="-S %Hostname%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Event Viewer" FileName="%WINDIR%\system32\eventvwr.exe" Arguments="%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-MultiMonitor" FileName="C:\Windows\System32\mstsc.exe" Arguments="/multimon /v:%HostName%" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="RemoteDesktop-1500x1000" FileName="C:\Windows\System32\mstsc.exe" Arguments="/v:%HostName% /w:1500 /h:1000" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="Telegraf endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments=" -app=http://%HostName%:9273/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> <App DisplayName="wmi_exporter endpoint" FileName="%HOMEPATH%\AppData\Local\Chromium\Application\chrome.exe" Arguments=" -app=http://%HostName%:9182/metrics" WorkingDir="" WaitForExit="False" TryToIntegrate="False" RunElevated="False" ShowOnToolbar="True" /> </Apps> -
rysstad created this gist
Feb 27, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <Apps> <App DisplayName="Computer Manager" FileName="%WINDIR%\system32\compmgmt.msc" Arguments="/Computer=%HostName%" WaitForExit="False" TryToIntegrate="False" /> <App DisplayName="Explorer - C: " FileName="%WINDIR%\explorer.exe" Arguments="\\%HostName%\c$" WaitForExit="False" TryToIntegrate="False" /> <App DisplayName="Explorer - E:" FileName="%WINDIR%\explorer.exe" Arguments="\\%HostName%\e$" WaitForExit="False" TryToIntegrate="False" /> <App DisplayName="Powershell - CredSSP" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -NoExit -Command "&{ $host.ui.RawUI.WindowTitle= '%Hostname%' ; Enter-PSSession -Authentication CredSSP -ComputerName %Hostname% -EnableNetworkAccess -Credential $(Get-Credential -Message 'Log on %Hostname% ') }"" WaitForExit="False" TryToIntegrate="False" /> <App DisplayName="Powershell - Current user" FileName="%WINDIR%\system32\WindowsPowerShell\v1.0\PowerShell.exe" Arguments="-NoProfile -ExecutionPolicy Bypass -NoExit -Command "&{ $host.ui.RawUI.WindowTitle = '%Hostname%' ; Enter-PSSession -ComputerName %Hostname% -EnableNetworkAccess }"" WaitForExit="False" TryToIntegrate="False" /> <App DisplayName="SQL Server Manager" FileName=""C:\Program Files (x86)\Microsoft SQL Server\130\Tools\Binn\ManagementStudio\Ssms.exe"" Arguments="-S %Hostname%" WaitForExit="False" TryToIntegrate="False" /> </Apps>