ProxySwitcher/configs/win_env.json

35 lines
755 B
JSON
Raw Normal View History

{
2024-11-07 18:30:01 +00:00
"name": "WIN - Env",
"cmd": "[System.Environment]::SetEnvironmentVariable('$PRSW_ARG', $PRSW_ARG, 'User')",
"set": [
{
"args": [
"http_proxy"
],
"surround": "\"",
"type": "variable"
}, {
"args": [
"https_proxy"
],
"surround": "\"",
"type": "variable"
}
],
"unset": [
{
"args": [
"http_proxy",
"[NullString]::Value"
],
"type": "variable"
}, {
"args": [
"https_proxy",
"[NullString]::Value"
],
"type": "variable"
}
]
}