Category: Uncategorized

  • Windows 10 my screen is black and white

    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.…

  • 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 Import-PSSession $Session http://technet.microsoft.com/en-us/library/jj984289(v=exchg.150).aspx

  • Microsoft Remote Conectivity Analyzer

    https://testconnectivity.microsoft.com/

  • 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,…

  • 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…