Move Chrome data location to another location using mklink

You could do it be creating a symbolic link from the original default location (C:/Users//AppData/Local/Google/Chrome/User Data) to, for example, a “D:/chrome.userData” folder. You’ll need to: – close Chrome; – know your Windows login user name (“user” in the example); – decide to where you want to move the files. The steps are: – create the destination directory (e.g.: md “d:/chrome.userData”) – using Windows Explorer, move (cut) C:/Users/user/AppData/Local/Google/Chrome/User Data to d:/chrome.userData – then run the command mklink /d “C:/Users/matt/AppData/Local/Google/Chrome/User Data” “d:/u-matt/chriomeappdata/user data”...
Read More

Set out of office reply on multiple mailboxes

Set same on Mulitple CSV with Heading UserPrincipalName Txt file with the HTML Code for the reply Connected to Exchange via powershell   This sets External message the internal message is set blank $Extmessage = Get-content -Path C:\Temp\externalmessage.txt Import-Csv C:\temp\Mailboxes.csv | ForEach-Object { $user1 = $_."UserPrincipalName" Set-MailboxAutoReplyConfiguration -identity $user1 –AutoReplyState Enabled –InternalMessage '' –ExternalMessage "$Extmessage" } check it has updated Import-Csv C:\temp\Mailboxes.csv | ForEach-Object { $user1 = $_."UserPrincipalName" Get-MailboxAutoReplyConfiguration -identity $user1 | select Identity,ExternalMessage| fl }      ...
Read More

Using Certify the web for lets encrypt certificates

Go to cloudflare and login click profile icon select my profile go to api tokens tab create new custom token Give token a name give the following permissions Zone Zone Edit Zone DNS Edit Zone Resources Include all zones IP Address filtering none (unless you wanted to restrict access, I have not as my IP is dynamic) TTL Blank Continue to summary Create token Copy API Token Install Certify the web application https://certifytheweb.com/home/ For authentication we will use DNS verification via Cloudflare API On Certify the web go to Settings stored credentials add new stored credentials Select Cloudflare DNS API Set credentials name to easily identify fill in the api token in the api token field click save   on manage certificates page new certificate click okay on prompt about registering a new contact select certificate authority of lets encrypt enter email address,( notify you of upcoming renewals if required, invalid email addresses will be rejected by certificate authority Agree to the terms click register contact   On new certificate window leave slecte site as no IIS side selected add the required domain name and click + Go to authorization tab change challenge type to dns-01 DNS update method - cloudflare...
Read More

Using PowerShell to Test a Remote Connection

Test-NetConnection www.google.com ComputerName : www.google.com RemoteAddress : 216.58.204.228 InterfaceAlias : Ethernet 3 SourceAddress : 192.168.0.13 PingSucceeded : True PingReplyDetails (RTT) : 17 ms   Test-NetConnection www.google.com -Port 80 ComputerName : www.google.com RemoteAddress : 216.58.204.228 RemotePort : 80 InterfaceAlias : Ethernet 3 SourceAddress : 192.168.0.13 TcpTestSucceeded : True   Test-NetConnection www.google.com -TraceRoute ComputerName : www.google.com RemoteAddress : 216.58.204.228 InterfaceAlias : Ethernet 3 SourceAddress : 192.168.0.13 PingSucceeded : True PingReplyDetails (RTT) : 26 ms TraceRoute : 192.168.0.1 0.0.0.0 62.252.112.45 0.0.0.0 62.253.175.34 212.250.14.74 74.125.242.97 172.253.71.201 216.58.204.228   Test-NetConnection www.google.com -port 80 -InformationLevel Quiet True...
Read More

Create signature Outlook web app

Login to https://outlook.office.com/owa/ click on gear icon and select view all outlook setting on Email tab select compose and reply and fill in your signature Login to https://outlook.office.com/owa/ If you get error the text your types is too long, clean up the signature Copy to new word documents and save the document as web page Filtered closed word and reopen the doc (it should open in web browser) then select the text and copy then paste in to signature are in OWA...
Read More

Add signature to Outlook client

Open a new email message. On the Message menu, select Signature > Signatures. Under Select signature to edit, choose New, and in the New Signature dialog box, type a name for the signature. Under Edit signature, compose your signature. Under Choose default signature for new messages select your signature, for replies is you want to use the same signature select the signature name or create a new signature. On Outlook for MacOn the Outlook menu, select Preferences.Under Email, select Signatures.Select Add to add a new signatureIn the Signature editor, type the text that you want to include in your signature.After you are done creating your signature, close the editor window Under Choose default signature for new messages select your signature, for replies is you want to use the same signature select the signature name or create a new signature. close the Signatures window.     ...
Read More

Managing membership of Distribution and 365 Groups

Distribution Groups Login to https://outlook.office.com/owa/ Click gear icon select view all outlook settings Go to General then distribution groups https://outlook.office.com/mail/options/general/distributionGroups   Office 365 Groups Login to https://outlook.office.com/owa/ on left side Groups select mange groups and will take you to https://outlook.office.com/people/group/owner Select required group and click on Members tab and remomve or all ones your require...
Read More