How to add margins to Visio 2013 First click on the design ribbon and then second click on the little arrow next to Page Setup. Now under the default tab “Printer Setup” click on the Setup button. Now change the margins to your specifications and click the OK button. As you can see it’s pretty […]
Change Network location using powershell in Windows
Change Network location using powershell in Windows How to Change Network location using powershell in Windows 8/8.1 and Windows Server 2012 and Windows Server 2012 R2. First open Powershell as Administrator then run: Get-NetConnectionProfile Then run: Set-NetConnectionProfile -InterfaceIndex 15 -NetworkCategory Private The InterfaceIndex is selecting the specific network adapter and the available options for the –NetworkCategory parameter […]
What laptop or computer should I buy?
What laptop or computer should I buy? I have been asked this question thousands of times more than I can count (What laptop or computer should I buy?) over the years, and since today I was asked again I figured I might as well post my advice and analogies to benefit others who are […]
c sharp extension methods
C sharp extension methods programming with C# sharp extension methods allow us to write cleaner, simpler and more readable code. But before we see how they are used, lets see some example code without using Extension methods. Below we will show you step by step as we will introduce the Extension methods. This is actually very easy […]
PowerShell to remote host
PowerShell to remote host If you have ever needed to remotely access a machine using the powerful CLI of PowerShell, it’s a very simple task and the syntax is pretty easy to remember as well which is nice. If you are wondering why you would want to powershell to remote host, here’s a couple scenarios: 1. […]