How to Fix Microsoft 365 and Office Has Stopped Working on Windows 7
The latest version which will run on Windows 7 is version 2002 and the latest version of Office Deployment Tool (ODT) seems no longer works in Windows 7.
172 articles
The latest version which will run on Windows 7 is version 2002 and the latest version of Office Deployment Tool (ODT) seems no longer works in Windows 7.
In some cases, you got the following error when connecting to an HTTPS server using WebRequest or PowerShell:
I’ve been using the following script, to bulk assign licenses to multiple users at once for years. Get-MsolUser -All -UnlicensedUsersOnly | ForEach-Object { Set-MsolUserLicense ` -UserPrincipalName $_.UserPrincipalName ` -AddLicenses 'M365t66166641:POWER_BI_STANDARD' } However, recently I am getting the following error, I’m…
For many admins, the use of Scopes is a new addition to Office 365 PowerShell. The Scopes parameter was introduced with the Microsoft Graph PowerShell API, but the concept of Scopes is actually part of the OAuth2 specification.
You might be curious about our preference for the Graph PowerShell SDK over other modules like Entra ID. Here’s why: The Graph PowerShell SDK serves as a robust interface for Microsoft Graph APIs, making the complete API suite accessible within…
We check the installed version of the Microsoft Graph PowerShell module on our computer. We’re using the v1 of Microsoft PowerShell SDK module.
By default, earlier PowerShell versions use SSL 3.0 and TLS 1.0 to establish secure HTTPS connections to repositories. Windows 7 enables SSL 3.0 and TLS 1.0 by default.
The organization configuration is dehydrated. In the Microsoft datacenters, an organization configuration being dehydrated means that it has certain objects consolidated to save space.
Before installing Exchange Online V2 module, we need to install the PowerShellGet module. The problem is that we are unable to install NuGet provider and a couple of errors are showing. Warning unable to download from URI, unable to download…
We are using the PowerShell to send emails using Microsoft 365 SMTP: Send-MailMessage ` -To "[email protected]" ` -From "[email protected]" ` -Subject "This is a test message from PowerShell" ` -Body "Hello World!" ` -Credential $Cred ` -SmtpServer "smtp.office365.com" -Port 587…