vWorld

vWorld – Oude Doesburgseweg 89C6901 HH Zevenaar – info@vworld.nl – Kantoor: 0316-798037 – Because it’s a virtual world!

How to deploy (additional) server roles on your IaaS Azure VM

Recently I needed an easy function to add additional servers roles on several IaaS virtual machines on a customer platform. This is how I accomplished this. For this example I’m going to install the IIS server role, it works for other roles ofcourse. I’ve created an simple powershell script with the following content :

[…]

Lees verder… from How to deploy (additional) server roles on your IaaS Azure VM

How to check your Office 365 tenant for auto-forward rules

Use the following steps to check for any Office 365 auto-forward rules to external email addresses. In this blogpost I’m using Powershell to check for any existing auto-forward rules to external email addresses. Step 1 Logon to Office 365 using Powershell Step 2 Export the mailbox(es) that have either redirect or forwarding This produces a […]

Lees verder… from How to check your Office 365 tenant for auto-forward rules

Troubleshooting Visual Studio Code: language client undefined

Recently I ran into the following problem when editing Powershell scripts using Visual Studio Code ; First I tried to remove the specific extension. Go to the extenstion tab and check for installed extensions using @installed : Click the action/config wheel to uninstall the specific extension and reload and reinstall it. In my case that […]

Lees verder… from Troubleshooting Visual Studio Code: language client undefined

How to enable GPEdit.msc in Windows 10 Home Edition

By default gpedit.msc is not enabled on Windows 10 Home (inclusing 7/8.1 editions). The good news it’s possible to enable this feature.

Copy the above code to a batch script / powershell and execute it with administrative rights. After executing I advice you to reboot. After rebooting you notice that gpedit.msc is now working […]

Lees verder… from How to enable GPEdit.msc in Windows 10 Home Edition

How to show (export) all devices synchronizing with your Office 365

For a MDM project I had to make an dump which users are using which devices to (active)sync with their Office 365 mailboxes. This is how I did that : Get-Mailbox -ResultSize Unlimited | ForEach {Get-MobileDeviceStatistics -Mailbox:$_.Identity} | Select-Object @{label=”User” ; expression={$_.Identity}},DeviceModel,DeviceOS, lastsuccesssync | Export-csv F:\powershell\activesync.csv Running the above command showed the following output (in […]

Lees verder… from How to show (export) all devices synchronizing with your Office 365

Powershell: Easily export your Windows Drivers

I was looking for a simple solution for me to export (and import later) my Windows driver. I already knew that Windows 2016 had a Powershell command for that but didn’t knew that it also worked for Windows Server 2012R2 and Windows 10! Use the following command : Export-WindowsDriver -Destination “C:\Drivers\$((Get-WmiObject -Class win32_computersystem).Model)” -Online Notice the […]

Lees verder… from Powershell: Easily export your Windows Drivers

Powershell: Start using PowerShell using PowerShell Command Builder

Microsoft TechNet site has a great site that enables you to build your own cmdlets using a web drag and drop interface. There is support for : Let’s try Office 365 : You notice the drag and drop interface. First select the verb, for example Get. Click get and the send arrow. Now choose a […]

Lees verder… from Powershell: Start using PowerShell using PowerShell Command Builder

Powershell: Connect to Azure Active Directory and Microsoft O365

Use the following Powershell script to connect to Azure Active Directory and Microsoft O365. This enables you to use all the O365 Powershell commands.

  (Download the Powershell plugin here) […]

Lees verder… from Powershell: Connect to Azure Active Directory and Microsoft O365

Office 365 : Disable Clutter (onbelangrijke mail) function

In this post I describe how to disable/enable the Clutter function of O365. The clutter feature is self learning and there are not many options you can specify. You can drag messages to and from the Clutter mailbox so that it can learn how to work. But sometimes you want do disable this function for […]

Lees verder… from Office 365 : Disable Clutter (onbelangrijke mail) function

Office 365 Powershell: Delegate Calender rights

Use the following steps to delegate (Calender) rights to a specific user. The first step is to specify your (administrator) credentials:

Then create the session:

Now import the Office 365 session using the following command:

Use the following command to delegate the calender from user1 to specified user2:

Et voilà! The […]

Lees verder… from Office 365 Powershell: Delegate Calender rights

Powershell : How to identify (and delete) specific email messages from Office 365

I was looking for a way to identify messages in my Outlook Mailbox and easily delete them. First connect to Office 365 with you (admin) credentials using the LiveCred command. Set the Execution Policy and import the commandlets. Using the next command creates an export of all emails from the specified user in the emailbox […]

Lees verder… from Powershell : How to identify (and delete) specific email messages from Office 365

Script to check multiple servers which services are using specific accounts

A client wanted to rename a specific account, but they were afraid to change this specific account because it could be used as a service account for several services running on a number of servers. Because I didn’t want to logon to all those servers manually I decided to create a powershell script.   Hereby […]

Lees verder… from Script to check multiple servers which services are using specific accounts