This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The following code will create an IIS site and it associated Application Pool. | |
# Please note that you will be required to run PS with elevated permissions. | |
# Visit http://ifrahimblog.wordpress.com/2014/02/26/run-powershell-elevated-permissions-import-iis-module/ | |
# set-executionpolicy unrestricted | |
Function createIISWebsite { | |
Param ([string]$Folder, [string]$AppPoolName, [string]$SiteName, [string]$Port) | |
import-module webadministration | |
New-Item $Folder -type Directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## shell commands I used to setup mysql on my raspberryPI and enable SQLyog access to it from my laptop | |
# install mysql using these instructions | |
# http://databaseblog.myname.nl/2013/01/how-to-install-mysql-succesfully-on.html | |
# Verify the MySQL Client was installed | |
mysql --version | |
# alter the settings to enable it to be a server on your lan |