PowerShell for DDNS (DynDNS.org)
I’ll just leave this here. I realise many would prefer alternatives to using scheduled tasks such as Windows services or built-in methods from more advanced routers (as I do) but I had a need...
me, on scripting, trance and other subjects i enjoy
I’ll just leave this here. I realise many would prefer alternatives to using scheduled tasks such as Windows services or built-in methods from more advanced routers (as I do) but I had a need...
Quick couple of lines of PowerShell to turn off the OneDrive integration in Windows Explorer for those of us that use other providers and would like to recover the space taken by the OneDrive...
I’ve recently written a very small browser extension for both Chrome and Firefox to allow you to see your external IP address with just a single click. No need to open a new tab...
One for the personal digital scrapbook. When writing PowerShell modules I always have to dig this up as reference material and I’ve added an example as well. about_Functions_Advanced_Parameters – https://technet.microsoft.com/en-us/library/hh847743.aspx
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Function My-Function { param([parameter(Mandatory=$true)][string[]] $Computer, [string] $Username = "user", [string] $Password = 'password', [int] $Port = 443, [parameter(Mandatory=$true)] [ValidateSet( "Enable", "Disable" )] [string[]] $Status ) # Do stuff } |
Obviously you need...
In the previous posts in this series we went through the process of creating a cross-premises Site-to-Site VPN with Azure by gathering some information about our local network, configuring the Azure Virtual Network and...
In this, part 3 of the series, we’ll implement the configuration required for VyOS to enable it to become a VPN endpoint with which we can connect to our Azure Virtual Network Gateway to...
If you haven’t read part 1 of this series, please review that before proceeding here. In part 1, I describe the network that we are starting with (mine) and how it is configured to...
Introduction This series of posts will cover the process of creating a Site-to-Site VPN from your on-premises network infrastructure in to Azure IaaS services using VyOS, hosted in a virtual machine. Typically, this results...