http://foursquare.com/businesses/
&
http://gowalla.com/
| To install the Administration Tools pack by using the Windows interface |
![]() |
Note |
| You must accept the License Terms and Limited Warranty to install Administration Tools. |
If you are prompted by User Account Control to allow the Windows Features dialog box to open, click Continue.
Shortcuts for snap-ins installed by Remote Server Administration Tools for Windows 7 are added to the Administrative Tools list on the Start menu.
1 2 | $notespw = Read-Host "Enter the password for the Notes ID file" -AsSecureString $notespw | ConvertFrom-SecureString | Set-Content $pwfile -force |
To retrieve the password and create the PSCredential object:
1 2 | $notespw = get-content $pwfile | ConvertTo-SecureString $notesid = new-object -typename system.management.automation.pscredential -argumentlist "-default-",$notespw |
Example of use:
1 | Get-DominoMailbox mary@contoso.com -SourceCredential $notesid |
You will used this for help in setting up and using the api tools for windows. P.S. in no particular order.
http://docs.amazonwebservices.com/AWSEC2/2007-08-29/GettingStartedGuide/setting-up-your-tools.html
http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1767
http://developer.amazonwebservices.com/connect/entry.jspa?externalID=351
http://serktools.com/2009/05/19/setting-up-ec2-command-line-tools-on-windows/
If you are like me and are just so used to typing set to list and set environment variables then you might find this script useful.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (test-path alias:set) { remove-item alias:set > $null } function set { [string]$var = $args if ($var -eq "") { get-childitem env: | sort-object name } else { if ($var -match "^(\S*?)\s*=\s*(.*)$") { set-item -force -path "env:$($matches[1])" -value $matches[2]; } else { write-error "ERROR Usage: VAR=VALUE" } } } |
This has been out for a while now. I really hadn’t needed to use this, however I used it a handful of times this week, and i do love it!!
http://blogs.msdn.com/webplatform/
http://www.microsoft.com/Web/