Categories
How-To Software

Tech Short: “execution of scripts is disabled on this system.”

Attempting to run a PowerShell script I got the following error: File C:\Work\ps.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at http://go.microsoft.com/fwlink/?LinkID=135170. + CategoryInfo : SecurityError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : UnauthorizedAccess To run PowerShell scripts (files that end with .ps1), you must set the […]

Categories
How-To Technical

Tech Short: Install Applications on a Remote Desktop Server 2012

When using a Terminal Server a special method is required when installing applications. The server needs to be placed into installation mode for successful install of applications that are used in this muti-user environment Change your user mode to installation mode by using the following command: Change User /Install When you have completed all application installations Change […]

Categories
How-To Technical

Tech Short: List all shared mailboxes, Exchange 2013

Quick an simple power shell line to list all shared mailboxes in your Exchange 2013 environment. Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails SharedMailbox   What’s a Shared Mailbox A shared mailbox is a mailbox that multiple users can use to read and send email messages. Shared mailboxes can also be used to provide a common calendar, allowing […]

Categories
Software Technical

Tech Short: Ubuntu Server System Information on login

If you have run Ubuntu Server you may have noticed that each time you log into your system via SSH system information  status are displayed. I have wondered this for a while now and tonight I found out. The command to reproduce this information is landscape-sysinfo This command is run from /etc/update-motd.d/50-landscape-sysinfo and exists when […]