server reboot – Restart mobile mail and OWA
Problem:
Whenever the server reboots a process starts before the default website can start casuing mobile mail and OWA to not function.
Solution:
To restart default website in IIS right click task manager, click show processes from all users, end EdgeTransport.exe process, open “Internet Information Services (IIS)”, tree down experit-2k11sbs > sites > default website, on the right hand side where it says manage website click start, if restart and stop become highlighted, you have started the website which controls OWA and mobile mail.
Mail error “Your organization does not allow external forwarding”
Some Microsoft 365 accounts default to block automatic email forwarding as part of their outbound spam protection. If external forwarding is disabled for your Microsoft 365 account, you will see a specific bounce message in your inbox at Microsoft 365 after attempting to set up forwarding to Help Scout. The text of the bounce will include this line:
550 5.7.520 Access denied, Your organization does not allow external forwarding. Please contact your administrator for further assistance. AS(7555)
You may choose to enable automatic forwarding for all mailboxes in your Microsoft 365 account, or enable it only for the mailboxes you’re forwarding to Help Scout. Choose the option that is best according to your organization’s security policies.
Note: The menus and options you see in your Microsoft 365 account may vary depending on several factors, including the level of service you have with Microsoft or if you purchased Microsoft 365 through a reseller. Reach out to your reseller or Microsoft support if you are unable to follow the directions here.
Enable Automatic External Forwarding for All Mailboxes
- 1
- Log in to your Office 365 Security & Compliance portal for Microsoft 365 and choose Threat management > Anti-spam or head directly to the Anti-spam settings page here: https://protection.office.com/antispam
- 2
- Click the down arrow next to Outbound spam filter policy (always ON) and click the Edit policy button.
- 3
- Click the down arrow next to Automatic forwarding, then choose On – Forwarding is enabled from the dropdown. Click Save.
Rebuild boot sector (complicated)
Problem:
Windows 10 not booting – blinking cursor or can’t find installation
Solution:
Bring up the command prompt:
Boot from any DVD or USB Windows 7, 8, or 10 media.
Once you have reached the Windows Setup screen (where you select the Language, Time and Keyboard settings), press the SHIFT + F10 keys to bring up the Command Prompt.
Find out whether your disk is set to GUID Partition Table (GPT) or Master Boot Record (MBR):
In the Command Prompt, type diskpartand press Enter.
Type list disk and press Enter.
Look for your disk and see if the GPT column has an asterisk (*) – this will indicate the disk is GPT. If no asterisk is found, then the disk is set as MBR.
Type exit and press Enter.
If the type is MBR:
From the Command Prompt, type dir a: and press Enter.
If drive A: is found and a directory is displayed, check for the Windows folder in the directory. If it is there, that is the System Drive. Skip to step 2.
If the drive is not found or it doesn’t contain the Windows folder, type dir b: and press Enter. Continue through the alphabet until the drive with the Windows folder is found, but skip the X: drive. That will be the install files from the USB or DVD you are using. The most common location is the C: drive, so that example will be used in the rest of the article.
Once it is found, type:bcdboot C:Windows /S C:
In this case, C is the drive where Windows folder was found. If the Windows folder is on a different drive, use that drive letter instead of “C” in the bcdboot command above.
The message Boot files successfully created must be shown before you can continue.
Type: diskpart and press Enter.
Type: list disk and press Enter.
Type: sel disk C and press Enter.
In this case, C is the drive where Windows folder was found. If the Windows folder is on a different drive, use that drive letter instead of “C” in the sel disk command above.
Type: list vol and press Enter.
Type: sel vol C and press Enter.
In this case, C is the drive where Windows folder was found. If the Windows folder is on a different drive, use that drive letter instead of “C” in the sel disk command above.
Type: active and press Enter.
You should get a confirmation that the volume has been successfully set as active. If you don’t get the confirmation, it means that either the disk is set to GPT (not MBR), or there is a problem with the disk. Make sure you are working with the right disk.
Type: exit and press Enter.
Reboot the device – you can do this quickly from the command prompt by typing: shutdown -f -r -t 00 and press Enter.
If the type is GPT:
From the Command Prompt, type dir a: and press Enter.
If drive A: is found and a directory is displayed, check for the Windows folder in the directory. If it is there, that is the System Drive. Skip to step 2.
If the drive is not found or it doesn’t contain the Windows folder, type dir b: and press Enter. Continue through the alphabet until the drive with the Windows folder is found, but skip the X: drive. That will be the install files from the USB or DVD you are using. The most common location is the C: drive, so that example will be used in the rest of the article.
Type: diskpart and press Enter.
Type: list disk and press Enter
Type: sel disk C and press Enter.
In this case, C is the drive where Windows folder was found. If the Windows folder is on a different drive, use that drive letter instead of “C” in the sel disk command above.
Type: list part and press Enter.
Look for the partition labeled as System.
Once it is found, assign the letter R to the partition. If the letter R is already taken, you can choose any unassigned letter. To assign the letter type: assign letter=r: and press Enter.
Type: exit and press Enter.
Return to the command prompt, type the following one line at a time, pressing Enter after each line:
cd /d r:EFIMicrosoftBoot
ren BCD BCD.bak
bcdboot c:Windows /l en-us /s m: /f UEFI
Note The /l en-us part of the command sets the Windows language to English. To set a different language, replace en-us with a different language code (such as de-de for German).