default-login
default-login
Default Login
141 posts
This is a repository of information and solutions to computer related problems.
Don't wanna be here? Send us removal request.
default-login · 4 years ago
Link
0 notes
default-login · 4 years ago
Text
Enable-Mailbox <user mailbox> -AutoExpandingArchive
https://msexchangeworld.com/exchange-online-and-unlimited-archiving-auto-expanding-archives/
Exchange Online Mailbox Limitations by License Type
https://docs.microsoft.com/en-us/office365/servicedescriptions/exchange-online-service-description/exchange-online-limits
0 notes
default-login · 4 years ago
Link
0 notes
default-login · 4 years ago
Link
0 notes
default-login · 4 years ago
Text
Microsoft 365 MFA Legacy Auth Issues
Enable or disable modern authentication in Exchange Online for client connections in Outlook 2013 or later
Connect to Exchange Online PowerShell.
Do one of these steps:
PowerShellCopy
PowerShellCopy
Run the following command to enable modern authentication connections to Exchange Online by Outlook 2013 or later clients:
Set-OrganizationConfig -OAuth2ClientProfileEnabled $true
Note that the previous command does not block or prevent Outlook 2013 or later clients from using basic authentication connections.
Run the following command to prevent modern authentication connections (force the use of basic authentication connections) to Exchange Online by Outlook 2013 or later clients:
Set-OrganizationConfig -OAuth2ClientProfileEnabled $false
To verify that the change was successful, run the following command:
Get-OrganizationConfig | Format-Table Name,OAuth* -Auto
0 notes
default-login · 4 years ago
Link
0 notes
default-login · 4 years ago
Link
0 notes
default-login · 4 years ago
Text
Connecting to Office365 to get MFA Status
Problem:
I wanted to use PowerShell to get the MFA enabled or disabled status of Office 365 and Azure users and type of MFA used, then output the results to a .csv file.
Solution:
Run the below command to output MFA details and status for all users:
Get-MsolUser -all | select DisplayName,UserPrincipalName,@{N="MFA Status"; E={ if( $_.StrongAuthenticationMethods.IsDefault -eq $true) {($_.StrongAuthenticationMethods | Where IsDefault -eq $True).MethodType} else { "Disabled"}}} | FT -AutoSize
0 notes
default-login · 5 years ago
Link
Vulnerability for CVE  
 On Feb. 11, 2020, Microsoft released security updates to address a vulnerability in Microsoft Exchange that would allow an attacker to turn any stolen Exchange user account into a complete system compromise. In many implementations, this could be used to completely compromise the entire Exchange environment (including all email) and potentially all of Active Directory.
0 notes
default-login · 5 years ago
Link
0 notes
default-login · 5 years ago
Link
Azure Remote App Desktop Application
0 notes
default-login · 5 years ago
Link
How to Configure Meraki VPN for Duo.
0 notes
default-login · 5 years ago
Link
Tumblr media
Wasabi Object Storage Veeam Infrastructure
0 notes
default-login · 5 years ago
Link
Tumblr media
2020 Best PowerShell Dictionary during a pandemic.
1 note · View note
default-login · 6 years ago
Text
vCenter Audit Logs Full
https://vsaiyan.info/2018/01/09/solved-vcenter-appliance-root-partition-100-full-plus-unable-to-log-in-to-the-root-account/
https://kb.vmware.com/s/article/2149278
0 notes
default-login · 6 years ago
Text
Powershell - Set Network to Private
Set-NetConnectionProfile -InterfaceAlias Ethernet -NetworkCategory Private
0 notes
default-login · 8 years ago
Text
Check mailbox size and usage with Office 365 - Powershell
First of all, you need to use the regular version of PowerShell. NOT the "Online Services Module" for PowerShell version that you would typically use for other Office 365 tasks, I guess because we are talking directly to the Exchange environment here and not the Office 365 portal itself. Make sure you run PowerShell as an administrator. (Right-click the icon and select "Run as Administrator") The first time I ever tried to run these type of scripts, I got an error about running remote signed scripts or something like that. So you need to run this command the very first time you try any operations like this: Set-ExecutionPolicy RemoteSigned Next are the 3 commands that you need to run to connect to your hosted Exchange server and start a new session: 1. $LiveCred = Get-Credential (then enter your Office 365 email address and password in the box that pops up) 2. $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic –AllowRedirection 3. Import-PSSession $Session Next is the basic command to get a list of all users and their current mailbox size: 4. get-mailbox | get-mailboxstatistics | ft displayname, totalitemsize When you are finished, it's a best practice to go ahead and close your session before you exit PowerShell, so you need to run this command: 5. Remove-PSSession $Session
0 notes