-
apache awk backup bash bind cacti cpu cron css dhcp dns dvd excel Exchange grep hdd history html KVM LVM mail mount named outlook partitions password perl php pptpd raid rdp regex rpm search sed selinux vm vpn Exchange (24)
Linux (56)
MySQL (1)
Others (4)
Windows (10)
WP Cumulus Flash tag cloud by Roy Tanck requires Flash Player 9 or better.
-
Recent Posts
Recent Comments
- Search + Save a copy of mail items using PowerShell | Part 2#5 - o365info.com on Exchange – Search For Keyword
- Using the Search-Mailbox PowerShell command - Introduction | Part 1#5 - o365info.com on Exchange – Search For Keyword
- Recover mail items from Recovery mail folder (the Dumpster) using PowerShell | Part 3#5 - o365info.com on Exchange – Search For Keyword
- Search and Delete mail items from the Exchange mailbox using the Search-Mailbox PowerShell cmdlets | Single mailbox | Part 5#5 - o365info.com on Exchange – Search For Keyword
- Using the Search-Mailbox PowerShell command | Perform a search + save a copy of search results | Part 2#5 - o365info.com on Exchange – Search For Keyword
Technology News
The winning app is being developed by Amazon Web Services and will be released for use in schools. [...]
The BBC carried out its biggest test of machine-generated journalism to cover the general election. [...]
More than three-quarters of consumers who haggled were offered a better deal, according to Which? [...]
Five-year-old Jacob Scrimshaw was born eight weeks early with most of his left arm missing. [...]
A US-based AI institute says that the science behind the technology rests on "shaky foundations [...]
Sekiro takes home game of the year as Xbox confirm new console for 2020 and big titles get a new tra [...]
Lawyers for Quadriga users say there are "questionable circumstances" behind Gerald Cotten [...]
Michael Kosanovich was standing between two cars when one was accidentally started with a remote. [...]
Videos containing insults based on race and sexual orientation will be removed, YouTube says. [...]
Humans usually take minutes to learn how to find diamonds in the game, but AI agents struggled. [...]
Captain Phatsima founded Dare to Dream, an organisation trying to get women into aviation. [...]
BBC Click's Paul Carter looks at some of the week's best technology stories. [...]
The internet is driving Kenya's entertainment industry and content creators are making money on [...]
The new game on US university campuses is behind computer screens as esports gets major investment. [...]
The BBC's technology correspondent shares how he manages Parkinson's in the workplace. [...]
BBC Click's Marc Cieslak looks at some of the best technology stories of the week. [...]
Videos about the NHS received the highest views and shares on social media platforms. [...]
Amazon's cloud computing business has been a big hit, but faces some big challenges as its boss [...]
It all seems futuristic but 2019 has seen a boom in the use of cutting edge robotic technology. [...]
Is the fashion for filming calorie-saturated food videos encouraging unhealthy eating? [...]
Archives
- December 2016
- September 2016
- August 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- December 2015
- September 2015
- August 2015
- July 2015
- May 2015
- February 2015
- December 2014
- November 2014
- October 2014
- June 2014
- May 2014
- April 2014
- January 2014
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
Meta
Category Archives: Windows
Exchange New-MailboxImportRequest – Import PST files
New-MailboxImportRequest -Name “Import1” -Mailbox “Test User” -FilePath \\ServerName\SharedFolder\Imported.pst -TargetRootFolder “Inbox/Imported” The above command will create a subfolder under the Inbox called “Imported” and all PST data will be imported into that subfolder. Get-MailboxImportRequest -Status Completed | Remove-MailboxImportRequest -Confirm:$all ( delete … Continue reading
Reduce KVM Windows qcow2 file size
Clean up the virtual drive (remove temps files, etc) Defrag with the open source UltraDefrag software with “full optimisation” Run “sdelete -z c:“ Run “qemu-img convert -p -f qcow2 -O qcow2 Win7.qcow2 /newpath/Win7.qcow2“ For Linux Guest: dd if=/dev/zero of=/mytempfile # … Continue reading
Exchange – remove address from all groups and hide it from GAL
Filename: script.ps1 $email = (read-host “email”) $GG = Get-DistributionGroup $RG = $GG | where {(Get-DistributionGroupMember $_ | foreach {$_.PrimarySmtpAddress}) -contains “$email”} foreach( $dg in $RG ){ Remove-DistributionGroupMember $dg -Member $email } get-mailbox -Identity $email | Set-Mailbox -HiddenFromAddressListsEnabled $true
Convert URL text to clickable hyperlink in Excel
1. Select the range of url text that you want to convert to clickable hyperlinks. 2. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window. 3. Click Insert > Module, and paste the … Continue reading
Exchange – Add mailbox permissions to Domain Admins
Add-MailboxPermission -Identity alice.cooper -User “Domain Admins” -AccessRights Fullaccess -InheritanceType all
Exchange – Check Email forwarding using Powershell
Get-Mailbox -Filter {ForwardingAddress -ne $null} | ft Name,ForwardingAddress,DeliverToMailboxAndForward -Autosize | Export-CSV e:\Email_forwarding_output.csv
Reset password in Active Directory using PowerShell
You must have the cmdlets ( part of the ActiveDirectory module for PowerShell v2 ) For Windows 7, you need to install the latest RSAT (Remote Server Admin Tools) and then add the Windows Feature for the PowerShell AD … Continue reading
Automatically Map Network Drive Batch File
Create the file ( .bat ) and let NET pick a free drive letter, then use NET to find out what letter it assigned: net use * “\\server\share” for /f “tokens=2” %%i in (‘net use ^| find “\\server\share”‘) do set … Continue reading
Exchange 2010 View Disconnected Mailboxes
Get-Mailbox -Filter “exchangeuseraccountcontrol -eq ‘accountdisabled’” | Get-MailboxStatistics | Sort-Object TotalItemSize -Descending | ft Displayname,TotalItemSize,Database
Exchange 2010 – Mailbox Traffic Report
View received e-mails for period: get-messagetrackinglog -ResultSize Unlimited -Recipient user@domain.com -Start “09/01/2014 12:00:00 AM” -End “09/30/2011 11:59:00 PM” | select timestamp, messageid, messagesubject, sender, {$_.recipients}, totalbytes, recipientcount | export-csv c:\somefolder\user-incoming.csv Add | measure-object to count the results; For sent e-mails … Continue reading