After PoSHServer v1.6, you can run it as a background service.
You just need to use:
parameter at the end to your Start-PoSHServer command.
Just provide IP address and port for SSL traffic:
If you don't provide, PoSHServer uses IP:127.0.0.1 and Port:8443 by default.
After PoSHServer v1.5, you can get "Cookie" values.
You can get "Cookie" values like this:
This will give you session ID of that user.
After PoSHServer v1.5, you can fetch "GET" values.
For example, this is your GET:
http://localhost:8080/index.ps1?name=Yusuf&surname=Ozturk
Then you can fetch "GET" values like this:
This will give you values directly.
After PoSHServer v1.5, you can fetch "POST" values.
For example, this is your POST:
name=Yusuf&surname=Ozturk
Then you can fetch "POST" values like this:
This will give you values directly.
There is no jscript limitation on PoSHServer.
However you need to use escape characters to make it work.
If you need to use something like this:
Then you should change your codes like this:
` is a escape character in PowerShell.
22.05.2012