Advanced Search
Search Results
29 total results found
Install Rosetta on 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
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
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
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
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
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 ...
Send as a Group in 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
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
Connect to the Sharepoint Powershell Connect-SPOService -Url https://example-admin.sharepoint.com -credential admin@example.com
Get Last Bootup Time
Get the last bootup time in Windows Powershell. Get-CimInstance -ClassName win32_operatingsystem | select csname, lastbootuptime
Manage OneDrive Profiles
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
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
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
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...
Find and Replace with Regex
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) ...
Find Data in Cell
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)
Count Unique Values in Spreadsheet
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))
Reset IE to Defaults
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
Create .pkg to deploy files and apps
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 ...
Manually Sync macOS Device with Intune
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...