Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

7 total results found

Install SSL Certificate on IIS hosted site

Servers Windows Servers

Copied from https://www.thesslstore.com How to Generate a CSR for Microsoft IIS 7   The following instructions will guide you through the CSR generation process on Microsoft IIS 7. To learn more about CSRs and the importance of your private key, reference o...

INTERFACE
GUI
OS
Windows Server

Check For Running Process

Workstations Microsoft Windows

Check for a running process. If the process is not running, start it. #CHECK RUNNING PROCESS $Check = (Get-Service -Name <ServiceName> -ErrorAction SilentlyContinue -ErrorVariable ProcessError) Invoke-Command -ScriptBlock{     if($Check -eq $null) {  W...

INTERFACE
CLI
OS
Windows10/11
APP
WindowsPowershell

Create a Scheduled Task

Workstations Microsoft Windows

To create a scheduled task in Windows Powershell that executes a Powershell Script. CREATE SCHEDULED TASK $action = New-ScheduledTaskAction -Execute "cd C:\path\to\script\location; ./script.ps1" $trigger = New-ScheduledTaskTrigger -At "8:15 pm" -Daily $pri...

OS
Windows10/11
INTERFACE
CLI
APP
WindowsPowershell

Lock Windows Workstation

Workstations Microsoft Windows

In command prompt, run: Rundll32.exe user32.dll,LockWorkStation

APP
CMD
OS
Windows10/11
INTERFACE
CLI

macOS Login Window - show username and password box

Workstations Mac OS

Press the following keys simultaneously. CONTROL+OPTION+COMMAND+SHIFT+DOWN ARROW+ENTER

INTERFACE
GUI
OS
macOS

Get Powershell version

Workstations Microsoft Windows

Powershell: Find powershell version $PSVersionTable.PSVersion

OS
Windows10/11
INTERFACE
CLI
APP
WindowsPowershell

Get GUID of installed program and remove it

Workstations Microsoft Windows

Powershell: Find GUID of program to uninstall. get-wmiobject Win32_Product | Sort-Object -Property Name | Format-Table IdentifyingNumber, Name, LocalPackage -AutoSize Uninstall a program using MsiExec - quietly msiexec.exe /x "{588A9A11-1E20-4B91-8817-2D...

OS
Windows10/11
INTERFACE
CLI
APP
WindowsPowershell