Screenconnect commandline: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 2: | Line 2: | ||
<syntaxhighlight lang="powershell" line='line'>Set-ExecutionPolicy RemoteSigned</syntaxhighlight> | <syntaxhighlight lang="powershell" line='line'>Set-ExecutionPolicy RemoteSigned</syntaxhighlight> | ||
Show Processes Names Like sam* and Filter for name only | |||
<syntaxhighlight lang="powershell" line="line">Get-Process sam* | Select-object name</syntaxhighlight> | |||
Test if Service is Running | |||
<syntaxhighlight lang="powershell" line="line">(Get-Service -Name 'Spooler').Status -eq 'Running'</syntaxhighlight> | |||
Show Drives and Space Usage | |||
<syntaxhighlight lang="powershell" line="line">get-psdrive -psprovider filesystem</syntaxhighlight> | |||
Create a Desktop shortcut to a folder (copy into 'Run Command' dialog) | |||
<syntaxhighlight lang="powershell" line="line"> | |||
$TargetFile = "C:\scan\" | |||
$ShortcutFile = "$env:Public\Desktop\folder.lnk" | |||
$WScriptShell = New-Object -ComObject WScript.Shell | |||
$Shortcut = $WScriptShell.CreateShortcut($ShortcutFile) | |||
$Shortcut.TargetPath = $TargetFile | |||
$Shortcut.Save() | |||
</syntaxhighlight> | |||
[[Category:ScreenConnect]] | [[Category:ScreenConnect]] |
Revision as of 14:13, 13 March 2020
Enable Remote Execution
Set-ExecutionPolicy RemoteSigned
Show Processes Names Like sam* and Filter for name only
Get-Process sam* | Select-object name
Test if Service is Running
(Get-Service -Name 'Spooler').Status -eq 'Running'
Show Drives and Space Usage
get-psdrive -psprovider filesystem
Create a Desktop shortcut to a folder (copy into 'Run Command' dialog)
$TargetFile = "C:\scan\"
$ShortcutFile = "$env:Public\Desktop\folder.lnk"
$WScriptShell = New-Object -ComObject WScript.Shell
$Shortcut = $WScriptShell.CreateShortcut($ShortcutFile)
$Shortcut.TargetPath = $TargetFile
$Shortcut.Save()