This is a repository of info, tricks, and solutions to computer related problems.
Don't wanna be here? Send us removal request.
Text
Renamed AD user’s UPN not syncing with Office 365 via DirSync
Steps to fix below:
1. Connect to Azure AD using Powershell 2. Run connect-msolservice and authenticate. 3. Run the following command with your relevant info:
Set-MsolUserPrincipalName -UserPrincipalName [CurrentUPN] -NewUserPrincipalName [NewUPN]
User this change will be made instantly. User will be prompted for creds in Outlook, and will now be able to use the updated username to log in to O365.
To change only the display name use this command:
Set-MsolUser -UserPrincipalName "[email protected]" -DisplayName "David Chew"
0 notes
Text
Connect to Office 365 Exchange online Powershell
Run these commands in order:
$UserCredential = Get-Credential
Enter the administrator credentials.
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session -DisableNameChecking
To close the session, run this command:
Remove-PSSession $Session
0 notes
Text
vCenter root partition 100% full
Follow the steps in this article when your vCenter appliance root partition is 100% full and you are unable to log in to the root account.
https://vsaiyan.info/2018/01/09/solved-vcenter-appliance-root-partition-100-full-plus-unable-to-log-in-to-the-root-account/
0 notes
Text
Check wireless networks / passwords in Windows 10
The GUI for this has been removed in Windows 10. If you find yourself needing to check a wireless password, perform the following steps:
-Run command prompt as administrator - Run netsh wlan show profile
This will list all the wireless networks that you’ve ever connected to.
To show the password for a particular network run the following command:
netsh wlan show profile “NETWORK NAME” key=clear
0 notes
Text
Set out of office messages for end users in Exchange 2013
Set-MailboxAutoReplyConfiguration <alias> -AutoReplyState enabled -ExternalAudience all -InternalMessage <Message to internal senders> -ExternalMessage <Message to external senders>
Messages need to be in quotations.
0 notes
Text
Fix Blank System Tray/Notifications in Windows
In Regedit find HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify
Delete IconStreams and PastIconsStream values.
Stop and start explorer.exe
0 notes
Text
SSR: ERROR EBAB03F1: Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed" occurs when attempting to create or select a backup destination or edit an existing job
This behavior is by Windows design and occurs at the operating system level. Edit the job properties to use the IP address of the network share or storage location instead of the machine name. As an alternate work-around, create a new DNS (Domain Names System) alias and attempt to connect with new credentials. If the account credentials for the storage destination have been recently modified, perform the steps below to clear default backup destination information: 1. Click "Start" and select "Run". Start the Services Snap-in by entering "Services.msc". Stop the Symantec System Recovery Service. 2. Click "Start" and select "Run". Start the registry editor by typing "regedit". 3. Navigate to "HKEY_LOCAL_MACHINE -> SOFTWARE -> Symantec -> Symantec System Recovery 4. Delete the "DefaultImagePath" value. 5. Click "Start" and select "Run". Start the Services Snap-in by entering "Services.msc". Start the Symantec System Recovery Service.Restart the Symantec System Recovery Service. 6. Launch Symantec System Recovery. 7. Select Tasks -> Options from the top drop-down menu. 8. Under "Settings -> General" ensure that the Network Credentials are correct. 9. Check Network Credentials for the backup job to ensure they match currently configured account credentials.
0 notes
Text
Switch O365 suite from Deferred Channel to Current
https://support.microsoft.com/en-us/help/3185078/how-to-switch-from-deferred-channel-to-current-channel-for-the-office-365-suite
0 notes
Text
Configuration of APC Powerchute 4.2 in VMware
http://www.apc.com/salestools/PMAR-9HBK44/PMAR-9HBK44_R4_EN.pdf?sdirect=true
VMware guide starts at page 57.
0 notes
Text
Give a user full permission to another user’s calendar in Exchange 2010
Add-MailboxFolderPermission <mailbox>:\Calendar -User <Mailbox-that-will-have-access> -AccessRights Owner
Use the command above without brackets to give a user permissions to another user’s calendar.
Double check that it worked with this command:
get-mailboxfolderpermission <User giving permission>:\calendar
TO REMOVE PERMISSIONS:
Remove-MailboxFolderPermission <User>:\Calendar -User <User-that-has-permission>
0 notes
Text
How to Manually Restart all VSS Writers when in a Failed State without rebooting.
There are instances when snapshots are failing due to an agent’s VSS writers being in a failed state but it is impossible or not desirable to restart the server until at least after business hours
This Script could help during business hours.
net stop “System Event Notification Service” net stop “Background Intelligent Transfer Service” net stop “COM+ Event System” net stop “Microsoft Software Shadow Copy Provider” net stop “Volume Shadow Copy” cd /d %windir%\system32 net stop vss net stop swprv regsvr32 /s ATL.DLL regsvr32 /s comsvcs.DLL regsvr32 /s credui.DLL regsvr32 /s CRYPTNET.DLL regsvr32 /s CRYPTUI.DLL regsvr32 /s dhcpqec.DLL regsvr32 /s dssenh.DLL regsvr32 /s eapqec.DLL regsvr32 /s esscli.DLL regsvr32 /s FastProx.DLL regsvr32 /s FirewallAPI.DLL regsvr32 /s kmsvc.DLL regsvr32 /s lsmproxy.DLL regsvr32 /s MSCTF.DLL regsvr32 /s msi.DLL regsvr32 /s msxml3.DLL regsvr32 /s ncprov.DLL regsvr32 /s ole32.DLL regsvr32 /s OLEACC.DLL regsvr32 /s OLEAUT32.DLL regsvr32 /s PROPSYS.DLL regsvr32 /s QAgent.DLL regsvr32 /s qagentrt.DLL regsvr32 /s QUtil.DLL regsvr32 /s raschap.DLL regsvr32 /s RASQEC.DLL regsvr32 /s rastls.DLL regsvr32 /s repdrvfs.DLL regsvr32 /s RPCRT4.DLL regsvr32 /s rsaenh.DLL regsvr32 /s SHELL32.DLL regsvr32 /s shsvcs.DLL regsvr32 /s /i swprv.DLL regsvr32 /s tschannel.DLL regsvr32 /s USERENV.DLL regsvr32 /s vss_ps.DLL regsvr32 /s wbemcons.DLL regsvr32 /s wbemcore.DLL regsvr32 /s wbemess.DLL regsvr32 /s wbemsvc.DLL regsvr32 /s WINHTTP.DLL regsvr32 /s WINTRUST.DLL regsvr32 /s wmiprvsd.DLL regsvr32 /s wmisvc.DLL regsvr32 /s wmiutils.DLL regsvr32 /s wuaueng.DLL sfc /SCANFILE=%windir%\system32\catsrv.DLL sfc /SCANFILE=%windir%\system32\catsrvut.DLL sfc /SCANFILE=%windir%\system32\CLBCatQ.DLL net start “COM+ Event System”
Run the script and then kick off your backup. Reboot may still be necessary.
0 notes
Text
Relay email off of Office 365
Option 3 is the most robust. I have skipped SPF record updates at every client I’ve used this on with no issues of messages getting caught in spam.
https://support.office.com/en-us/article/How-to-set-up-a-multifunction-device-or-application-to-send-email-using-Office-365-69f58e99-c550-4274-ad18-c805d654b4c4?ui=en-US&rs=en-US&ad=US
0 notes
Text
Fix Stuck Windows Updates (WIN7) as of 12-15-16
https://www.reddit.com/r/windows/comments/4tx4s9/windows_7_slowstuck_checking_for_updates_fix_as/
This post appears to be regularly updated with new methods.
0 notes
Text
Install OMSA 8.4 in ESXI
http://www.dell.com/support/Article/us/en/4/HOW10613/EN
0 notes