Tagged Questions
0
votes
1answer
173 views
Install cmd script to set user environment variables from file
Each line in input file.txt has two values separated by a space. Currently using:
for /F "tokens=1,2" %%i in (file.txt) do call :setvars %%i %%j
:setvars
set %1=%2
set %3=%4
set ...
0
votes
1answer
127 views
Limits on Windows environment variable nesting?
So, is there a limit to how deeply environment variables can be nested in Windows? I do a lot of development work and I'm trying to set up my development environment vars, and a lot of them nest off ...
1
vote
4answers
6k views
Apache2 - mod_rewrite : RequestHeader and environment variables
I try to get the value of the request parameter "authorization" and to store it in the header "Authorization" of the request.
The first rewrite rule works fine. In the second rewrite rule the value ...