Skip to main content

Microsoft 365 Business Basic

Microsoft 365 Business Basic: 2.5USD/user/month

HAPPEN to buy Microsoft 365 Business Basic for 2.5USD/month/user, which is usually 5USD/month/user.

The hyperlink I used to register on July 26 2020: https://businessstore.microsoft.com/en-us/create-account/signup?OfferId=4f7c74af-24cc-4cb4-b91f-4da6acf69e49&products=cfq7ttc0k59v:0006&ispolaris=1&culture=en-us&country=vn&ali=1

Microsoft 365 Business Basic
Microsoft 365 Business Basic

Go passwordless

>>> Passwordless authentication options for Azure Active Directory

Add alias to mailbox

$domain = "2practice.xyz"
Set-Mailbox administrator -EmailAddresses @{add="webmaster@$domain"}

Enable Send As from alias

PS > Connect-ExchangeOnline
PS > Set-OrganizationConfig -SendFromAliasEnabled $True
PS > # Verify
PS > Get-OrganizationConfig| ft SendFromAliasEnabled

SendFromAliasEnabled
--------------------
                True
Get-OrganizationConfig

Commonly used administrator's tasks

>>> Audit log search - Default retention policy: 90 days)

>>> Message trace

Popular posts from this blog

Powershell: Install IIS

Run Powershell as Administrator, then run the command below to install IIS. Install-WindowsFeature Web-WebServer Check after installing Get-WindowsFeature *Web*

[PowerShell]: Powershell script uploading backup databases to ftp server

Author:  Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c Nhu cầu - Học sử dụng Powershell và áp dụng vào thực tế - Server chạy MS SQL được backup mỗi ngày và lưu các file backup ở folder mặc định "C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup" - Upload các file database backup về một ftp server khác để lưu "offsite" # Begin script # Thanks to: Enrique Puig Nouselles http://gallery.technet.microsoft.com/scriptcenter/80647f66-139c-40a4-bb7a-04a2d73d423c # Khai báo folder chứa các file backup database, dưới đây là folder backup mặc định của MS SQL 2012 $Dir="C:/Program Files/Microsoft SQL Server/MSSQL11.MSSQLSERVER/MSSQL/Backup"   # ftp server $ftp = "ftp://IPAddres/subfolder/subsubfolder" $user = "usernamehere" $pass = "passwordhere" # DO NOT use $(Get-Date), use $d variable instead, otherwise SQL Agent gets error "The...