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

77 total results found

Lock Windows Workstation

Workstations Microsoft Windows

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

INTERFACE
CLI
APP
CMD
OS
Windows10/11

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

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...

OS
Windows10/11
INTERFACE
CLI
APP
WindowsPowershell

Change Intune macOS Personal Ownership to Company

Microsoft 365 Powershell

  Get-MgDeviceManagementManagedDevice -All | Where-Object {$_.ManagedDeviceOwnerType -eq "unknown" -and $_.OperatingSystem -like "macOS"} | % { Update-MgDeviceManagementManagedDevice -ManagedDeviceId $_.Id -ManagedDeviceOwnerType company }  

INTERFACE
CLI
CMDLET
MgGraph
SERVICE
Microsoft365
APP
365Powershell

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

Prevent Spoofing of Executives

Microsoft 365 Exchange

To add a disclaimer for incoming emails that bear the name of an executive, go to the Exchange Transport Rules and create a rule. https://admin.exchange.microsoft.com/#/transportrules Rule Conditions: The Message Header From Contains executive names AND T...

INTERFACE
GUI
APP
Exchange
SERVICE
Microsoft365