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

510 total results found

SSO

Windows Office 365

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

Windows Office 365

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

Windows Office 365

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

Windows Office 365

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

Windows Office 365

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

Windows Office 365

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

Windows Office 365

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

Windows Office 365

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

Windows Office 365

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

Windows Office 365

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

Windows Powershell

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

Windows Powershell

import-module grouppolicy  get-command –module grouppolicy      These commands are needed to import Active Directory commands       

Powershell export AD users in OU to CSV

Windows Active Directoy

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

Windows Powershell

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

Windows Powershell

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

Windows Powershell

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

Windows Powershell

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

Windows Powershell

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

Windows Powershell

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

Windows Powershell

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