Browser Extension Show External IP
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...
me, on scripting, trance and other subjects i enjoy
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...
Microsoft recently released to GA (Generally Available) Azure AD Connect which is a much simplified installation and replacement for DirSync and Azure Active Directory Sync Services. Under the hood, it’s the same as Azure...