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

29 total results found

Install Rosetta on Mac OS

Workstations Mac OS

Rosetta is required for compatibility with some applications. To install Rosetta on a Mac, open the terminal and run the following command. softwareupdate --install-rosetta --agree-to-license  

Add Printer in Powershell

Workstations Microsoft Windows

List Printers Get-Printer Remove Printer Remove-Printer -Name "HP Deskjet 1510 series"   Add Printer Add-Printer -Name "HP Deskjet 1510 series" -DriverName "HP Deskjet 1510 series" -PortName "USB003"   Add a printer po...

Create User in Terminal

Workstations Mac OS

Set the username and password dscl . -passwd /Users/<username> <password> Set the user's default shell dscl . -create /Users/<username> UserShell /bin/bash Set the user's display name dscl . -create /Users/<username> RealName "Real Name" ...

Create User in Powershell

Workstations Microsoft Windows

Powershell The first command uses the Read-Host cmdlet to prompt you for a password. The command stores the password as a secure string in the $Password variable. The second command creates a local user account and sets the new account's password to the secu...

Setup the OneDrive Sync Client

Workstations Microsoft Windows

To setup OneDrive, first open the OneDrive app. If you're using a PC, click start and then type OneDrive. Open the OneDrive app. If you're using a Mac, go to the launchpad and type OneDrive. Open the OneDrive app. Sign-in to your Microsoft account...

Reset a Windows Device

Microsoft 365 Intune

Prepare Device for Reprovisioning Navigate to the Intune Admin Portal https://intune.microsoft.com/ > Devices > All Devices and select the device. Select Autopilot Reset and then confirm. This will return the device an IT approved state and make it ready ...

APP
Intune
SERVICE
Microsoft365

Send as a Group in Outlook

Microsoft 365 Outlook

To send a message as a group or shared mailbox from your own account, first the admin has to grant Send-As permissions for your account on the target group. In Outlook, start a new message. By default, the From address is not shown. First, you need to Show ...

Setup Microsoft 365 Account

Microsoft 365 Outlook

The first time you sign-in to your account on Microsoft 365, there are some account setup tasks to be done.  office.com To get started, first go to office.com and click Sign in. Enter your username (your username is in the form of an email address). C...

Connect to Sharepoint

Microsoft 365 Powershell

Connect to the Sharepoint Powershell Connect-SPOService -Url https://example-admin.sharepoint.com -credential admin@example.com

SERVICE
Microsoft365
CMDLET
SharepointPowershell
APP
365Powershell

Get Last Bootup Time

Workstations Microsoft Windows

Get the last bootup time in Windows Powershell. Get-CimInstance -ClassName win32_operatingsystem | select csname, lastbootuptime  

APP
WindowsPowershell

Manage OneDrive Profiles

Microsoft 365 Sharepoint

To get OneDrive Profiles for licensed users or users that were previously licensed, go to the Sharepoint Admin center. You can grant a user access to another user's OneDrive files. This is useful for the successor of a departed employee. In the Sharepoint Adm...

Get Intune Managed Device Information

Microsoft 365 Powershell

To get device information for Intune managed devices, use the Get-MgDeviceManagementManagedDevice cmdlet using the Exchange Powershell module. Get all devices. Get-MgDeviceManagementManagedDevice -All:$true Filter devices by device name. -Filter "contain...

Get the Tenant ID of an Azure/Entra Joined PC

Workstations Microsoft Windows

To get the Tenant ID of the Azure Joined PC, or confirm it is joined to Azure; Open Windows PowerShell. Enter dsregcmd /status. Verify that AzureAdJoined is set to YES. OUTPUT PS C:\WINDOWS\system32> dsregcmd /status +----------------------------...

Redirect Email

Google Workspace

In the case email should be redirected from the original recipient to another mailbox, you can use redirect rules. This is useful if email should be delivered to multiple recipients or, for offboarding, a departed employee's email should be redirected to their...

INTERFACE
GUI
SERVICE
Google Workspace
APP
Gmail

Find and Replace with Regex

Code and Data Manipulation

Regex to find date and time. Option 1: ([\d]{1,2})/([\d]{1,2})/([\d]{4}) in format mm/dd/yyyy Option 2: [0-9]{4}-[0-9]{2}-[0-9]{2}T in format yyyy-mm-dd Option 3: ([0-1]?[0-9]|2[0-3]):[0-5][0-9] in format HH:mm In Sublime Text Find and Replace (CMD+OPT+F) ...

INTERFACE
GUI
APP
SUBLIME

Find Data in Cell

Code and Data Manipulation

This document is in development SEARCH finds "text value" in cell A1. IF result of SEARCH is that the data is found, result returns TRUE. Else, FALSE. =IF(SEARCH("text value",A1,1),TRUE,FALSE)

INTERFACE
GUI
APP
EXCEL

Count Unique Values in Spreadsheet

Code and Data Manipulation

This document is in development UNIQUE finds the unique values in a spreadsheet row or column. COUNTA counts the results of UNIQUE, result returns a numeric value. =COUNTA(UNIQUE(A1:B100))

INTERFACE
GUI
APP
EXCEL

Reset IE to Defaults

Workstations Microsoft Windows

Symptoms: OneDrive stuck at Signing in. OneDrive sign-in gives Proxy Authentication Error [2606] Outlook continually asks for password. Solution: RunDll32.exe InetCpl.cpl,ResetIEtoDefaults Source

INTERFACE
CLI
APP
MSOffice

Create .pkg to deploy files and apps

Workstations Mac OS

Create a directory named Contents and another named Scripts. Put the app contents in the Contents directory.  Put the script in the Scripts directory and name it postinstall, with no extension and give it executable rights. Run this command to create the ...

APP
BASH
INTERFACE
CLI

Manually Sync macOS Device with Intune

Microsoft 365 Powershell

In Company Portal, click the ellipses and Check Status or press command+option+S.   To trigger a sync form the CLI, force close the Intune Agent process. Use ps to list running processes; the -A flag specifies all running processes. Pipe the output to the g...

INTERFACE
CLI
APP
Intune