CTRL + WINDOWS KEY + C
Converte Office 365 mailbox to shared mailbox
Connect to Office 365 via PowerShell
Set-Mailbox mailboxname@company.com -Type shared
Export mailbox to PST Exchange 2007
You must run this from a 32-bit Windows OS (I used Windows 7 Ent. 32-bit) with Exchange Management Tools installed, version Exchange 2007 SP1 or later, (I used Exchange 2007 SP3 with update rollup 13) and Outlook 2003 or Outlook 2007 (I used Outlook 2007 with SP3).
Microsoft Exchange Server 2007 Management Tools (32-Bit) download.
Start Exchange Management Shell (EMS) from the client that is member in the same domain as the exchange server. Your user account must be an Exchange Organization Admin or an Exchange Server Admin on the Exchange server who has the mailboxes you want to export.
Your account must have full mailbox access on the mailboxes you want to export.
Example. anna is the alias for the users mailbox you want to export. danieladmin is your account.
Run this command from EMS:
Add-MailboxPermission -Identity anna -User danieladmin -AccessRights FullAccess
To export annas mailbox:
Export-Mailbox -Identity anna -PSTFolderPath \\fileserver\PSTexport
Links:
blogs.technet.com/b/exchange/archive/2007/04/13/3401913.aspx
technet.microsoft.com/en-us/library/bb266964%28v=exchg.80%29.aspx
Connect to Office 365 via PowerShell
1. Allowing PowerShell executing scripts: https://headadmin.net/?p=172
2. Do this in an elevated PowerShell promt:
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
http://technet.microsoft.com/en-us/library/jj984289(v=exchg.150).aspx
Microsoft Remote Conectivity Analyzer
Change IP config on PHD VBA
1. Within XenCenter, click the PHD VBA virtual machine and then click the Console tab.
2. Press Ctrl-N to enter the Network Configuration menu.
3. Select option 2. Static and enter an IP address, Netmask, and any other required network settings for your environment (Gateway, Primary DNS or Alternate DNS).
4. When complete, click Save, then OK to restart the PHD VBA.
I’m always online on skype
I was always online on Skype. I tried to log out from all my devices (Windows 8.1 and iOS devices), change password, disable linked accounts ect. Nothing help.
But when I used the chat command /remotelogout I went offline.
Just open a chat window. Type: /remotelogout and press enter.
Cannot connect to SharePoint via WebDAV from Windows 2008
You need to add “Desktop Experience” feature on the server that you trying to connect from. You will need to reboot the server.
Try to coonect to SharePoint via WebDAV. If you doesn’t work try to restart “WebDav Client” service.
Outlook 2010: sending reported error 0x80040115
A user couldn’t send email using Outlook 2010. Emails was queued in the outbox. User got the following error: “sending reported error 0x80040115”
It worked if the Exchange account hade cached mode disabled.
I had to create a new profile and after that it worked.
MySQL Warning: Using unique option prefix u instead of user is deprecated
I have a script to dump the sql database to file. Now i get the message:
Warning: Using unique option prefix u instead of user is deprecated and will be removed in a future release. Please use the full name instead.
In my script I specified the user like this: –u daniel
My solutions to the problem was to change it to: –user=daniel