Advanced Search
Search Results
510 total results found
SSO
Setting up Microsoft Azure/365 to an existing AD can be eased by implementing SSO between the systems Setup sync w/ AD/AAD The Seamless SSO box has to be checked in AD Connect GPO (we can temple with Accent) The Azure AD URL...
Azure/Office 365 - Convert from ADConnect to Online Only
When you are ready to turn off DirSync, and all exchange mailboxes are in the cloud, the next steps will be turning off DirSync: https://docs.microsoft.com/en-us/microsoft-365/enterprise/turn-off-directory-synchronization?view=o365-worldwide You ne...
AD Connect
Provide the password of the AD DS Connector account Start the Synchronization Service Manager (START → Synchronization Service). Go to the Connectors tab. Select the AD Connector that corresponds to your on-premises AD. ... Under Action...
OneDrive Redirection
Baseline settings for stock OneDrive Redirection GPO Computer Configuration Policies Administrative Templates OneDrive Block file downloads when user are low on disk space 1024 Limit the sync app upload rate t...
Google email in Outlook
How to set up Gmail in Outlook Gmail is a popular choice for email, and you can get this as part of the Google Apps suite to use as email at your domain. See this tutorial for how to get Google Apps free for nonprofits! Your Gmail account can be accessed a...
PowerShell Add to Global Admin
Today I was working on adding all the new admin accounts we made for a client to the Global Admin Role for Microsoft 365 as part of the onboarding process. Prior I had added the accounts in the local AD accounts using PowerShell and set them to sync with AD C...
OneDrive Sync Issues
If problem is rooted in dual sync accounts If logged into wrong OneDrive, download all files Log out Log out of OneDrive Log out of TEAMS Log out of all other Microsoft Office Suite Remove all Microsoft references from Win...
OneDrive Grant Access
OneDrive Termination When someone is NLE terminated we may grant a different user access to that person's OneDrive SharePoint Admin Center -> More featuers -> User profiles -> Manage User Profiles -> %user% Find -> select then Manage site co...
SSPR
Self Service Password Reset Requires P1 or P2 MS Licensing Azure Active Directory -> Password Reset -> Properties If Hybrid Sync need to setup Password Writeback
Password WriteBack
Setup Self Service Password Reset (SSPR) SSPR Requires P1 or P2 Microsoft licensing Azure Active Directory -> Password Reset -> On-premises integration Enable password write back for synced users Allow user to unlock acco...
PST Mailbox Import Export
Exchange 2016: Add-PSSnapin Microsoft.Exchange.Management.PowerShell.SnapIn foreach ($Mailbox in (Get-Mailbox)) {New-MailboxExportRequest -Mailbox "$Mailbox" -FilePath "\\ACS-01-VSRV49\Export\$($Mailbox.Alias).pst"} Exchange 2013+ : Add-PS...
Powershell AD
import-module grouppolicy get-command –module grouppolicy These commands are needed to import Active Directory commands
Powershell export AD users in OU to CSV
########################################################### # AUTHOR : Victor Ashiedu # WEBSITE : iTechguides.com # BLOG : iTechguides.com/blog-2/ # CREATED : 08-08-2014 # UPDATED : 19-09-2014 # COMMENT : This script exports Active Directory ...
Powershell create PC object
dsadd computer "cn=RHSC-33-LT03, OU=Mobile,OU=Workstation,OU=Belle Plaine,OU=RHSC,DC=RHSC,DC=local" dsadd computer "cn=RHSC-33-LT03, OU=Mobile,OU=Workstation,OU=Belle Plaine,OU=RHSC,DC=RHSC,DC=local" dsadd computer "cn=RHSC-33-LT04, OU=Mobile,OU=Workstatio...
Safe Sender
dsadd computer "cn=RHSC-33-LT03, OU=Mobile,OU=Workstation,OU=Belle Plaine,OU=RHSC,DC=RHSC,DC=local" dsadd computer "cn=RHSC-33-LT03, OU=Mobile,OU=Workstation,OU=Belle Plaine,OU=RHSC,DC=RHSC,DC=local" dsadd computer "cn=RHSC-33-LT04, OU=Mobile,OU=Workstatio...
DSQUERY // ADComputer
Get password info ITBR Data Gathering Commands Onboarding Commands Dsquery computer -inactive 13 | dsmod computer -desc inactive Dsquery user -inactive 13 | dsmod user -desc inactive Dsquery computer -inactive 104 | dsmod computer -des...
Public Folders
Remove Public Folders Get-PublicFolder -Server <server containing the public folder database> "\" -Recurse -ResultSize:Unlimited | Remove-PublicFolder -Server <server containing the public folder database> -Recurse -ErrorAction:SilentlyContinue Fr...
Powershell AD User Commands
Get-ADUser -SearchBase “OU=Lincoln,OU=RHSC,dc=rhsc,dc=local” -Filter * -Properties DisplayName, EmailAddress | select DisplayName, EmailAddress | Export-CSV "C:\Scripts\Email_Addresses.csv" Get-ADUser SearchBase "" -Filter * -Properties * | FT...
Powershell to purge checkpoints
Get-VMSnapshot -ComputerName "MyHyperVHost" -VMName "VMWithLingeringBackupCheckpoint" From <https://blog.workinghardinit.work/2015/10/15/remove-lingering-backup-checkpoints-from-a-hyper-v-virtual-machine/> Get-VMSnapshot -ComputerName "MyHyper...
Powershell Services
Get a listing of all services that are set to 'Automatic' startup that is currently 'Stopped' Get-Service | Where-Object {$_.StartType -eq 'Automatic'} | where-object {$_.Status -eq 'Stopped'} Attempt to start the services that are not currently runn...