https://github.com/chriseyre2000/Powershell/tree/master/Generator
This is a universal scaffolder.
It can be used to generate anything and is highly scriptable.
Random outpourings of a software developer
https://github.com/chriseyre2000/Powershell/tree/master/Generator
This is a universal scaffolder.
It can be used to generate anything and is highly scriptable.
#Multiline powershell regex with variable extraction.
$data = @”
first
second
third
“@
$data | Select-string -Pattern “(?s)first(?.*)third” | select -ExpandProperty Matches | foreach { $_.Groups[“name”].Value}
It seems that microsoft have failed to keep the emulator in line with the storage account api.
I am trying to use the nuget package WindowsAzure.Storage.3.0.2.0
I have an attempt at creating a powershell script to query table storage.
It can be found on https://github.com/chriseyre2000/Powershell/tree/master/Azure
I plan on using the previous version windowsazure.storage 2.1.0.4 to see if that works against the emulator.
When working in Azure you need to keep up with versions before they are disabled, but if you go too far then it will hurt.
http://www.hanselman.com/blog/IntroducingWindowsAzureWebJobs.aspx
This is a simple technique for scaling up command line apps to cloud scale.
http://technet.microsoft.com/en-us/library/hh831611.aspx
This is a tool for creating a web site that allows powershell to be used from any browser.
You can restrict who calls what, and what can be called.
http://powershell.org/wp/?s=secrets+of+remoting
Largley these are git based files.