CMD Fileless equivalent of < redirection












0














I have a batch that wraps AnyConnect Mobility Client CLI (vpncli.exe) and asks username and password to later handle them to vpncli.



Simplified code:



set /p user_id=Username:
set /p pwd=Password:
echo %user_id%> c:tempconfigvpn.txt
echo %pwd%>> c:tempconfigvpn.txt

set install_dir="C:Program Files (x86)CiscoCisco AnyConnect Secure Mobility Client"

%install_dir%vpncli.exe connect myvpn.mydomain.TLD -s < c:tempconfigvpn.txt

net use h: \fileserversharename /user:domain%user_id% %pwd%


The last line it's why we do it this way: to not prompt user password twice (first for connecting VPN and second to map network drive)



For security reasons I'm improving the script to not write password to disk. I need a fileless equivalent of this "< c:tempconfigvpn.txt"



I tried :



(
@echo %user_id%
@echo %pwd%
) | %install_dir%vpncli.exe connect myvpn.mydomain.TLD -s


Not success so far. The output is this loop:



  >> Please enter your username and password.
Group: VPN-TESTGROUP

Username: [myUsername] Password:
>> Login failed.
Group: VPN-TESTGROUP

Username: [myUsername] Password:
>> Login failed.


(repeats indefinitely)



Is there a way to do this?










share|improve this question






















  • It seems vpncli.exe supports giving the username and password as parameters. See docstore.mik.ua/univercd/cc/td/doc/product/vpn/client/3_6/…
    – LPChip
    Dec 11 at 15:38










  • so: vpncli connect myvpn.mydomain.tld user MyUser pwd MyPass
    – LPChip
    Dec 11 at 15:39












  • Actually no. This is old documentation of legacy VPN Client. I tried myself but current vpncli (referring anyconnect 4.6) throws an error using this syntax. Thanks anyway
    – Filipe
    Dec 11 at 17:47










  • Question was asked and answered on StackOverFlow
    – Squashman
    Dec 12 at 4:29
















0














I have a batch that wraps AnyConnect Mobility Client CLI (vpncli.exe) and asks username and password to later handle them to vpncli.



Simplified code:



set /p user_id=Username:
set /p pwd=Password:
echo %user_id%> c:tempconfigvpn.txt
echo %pwd%>> c:tempconfigvpn.txt

set install_dir="C:Program Files (x86)CiscoCisco AnyConnect Secure Mobility Client"

%install_dir%vpncli.exe connect myvpn.mydomain.TLD -s < c:tempconfigvpn.txt

net use h: \fileserversharename /user:domain%user_id% %pwd%


The last line it's why we do it this way: to not prompt user password twice (first for connecting VPN and second to map network drive)



For security reasons I'm improving the script to not write password to disk. I need a fileless equivalent of this "< c:tempconfigvpn.txt"



I tried :



(
@echo %user_id%
@echo %pwd%
) | %install_dir%vpncli.exe connect myvpn.mydomain.TLD -s


Not success so far. The output is this loop:



  >> Please enter your username and password.
Group: VPN-TESTGROUP

Username: [myUsername] Password:
>> Login failed.
Group: VPN-TESTGROUP

Username: [myUsername] Password:
>> Login failed.


(repeats indefinitely)



Is there a way to do this?










share|improve this question






















  • It seems vpncli.exe supports giving the username and password as parameters. See docstore.mik.ua/univercd/cc/td/doc/product/vpn/client/3_6/…
    – LPChip
    Dec 11 at 15:38










  • so: vpncli connect myvpn.mydomain.tld user MyUser pwd MyPass
    – LPChip
    Dec 11 at 15:39












  • Actually no. This is old documentation of legacy VPN Client. I tried myself but current vpncli (referring anyconnect 4.6) throws an error using this syntax. Thanks anyway
    – Filipe
    Dec 11 at 17:47










  • Question was asked and answered on StackOverFlow
    – Squashman
    Dec 12 at 4:29














0












0








0







I have a batch that wraps AnyConnect Mobility Client CLI (vpncli.exe) and asks username and password to later handle them to vpncli.



Simplified code:



set /p user_id=Username:
set /p pwd=Password:
echo %user_id%> c:tempconfigvpn.txt
echo %pwd%>> c:tempconfigvpn.txt

set install_dir="C:Program Files (x86)CiscoCisco AnyConnect Secure Mobility Client"

%install_dir%vpncli.exe connect myvpn.mydomain.TLD -s < c:tempconfigvpn.txt

net use h: \fileserversharename /user:domain%user_id% %pwd%


The last line it's why we do it this way: to not prompt user password twice (first for connecting VPN and second to map network drive)



For security reasons I'm improving the script to not write password to disk. I need a fileless equivalent of this "< c:tempconfigvpn.txt"



I tried :



(
@echo %user_id%
@echo %pwd%
) | %install_dir%vpncli.exe connect myvpn.mydomain.TLD -s


Not success so far. The output is this loop:



  >> Please enter your username and password.
Group: VPN-TESTGROUP

Username: [myUsername] Password:
>> Login failed.
Group: VPN-TESTGROUP

Username: [myUsername] Password:
>> Login failed.


(repeats indefinitely)



Is there a way to do this?










share|improve this question













I have a batch that wraps AnyConnect Mobility Client CLI (vpncli.exe) and asks username and password to later handle them to vpncli.



Simplified code:



set /p user_id=Username:
set /p pwd=Password:
echo %user_id%> c:tempconfigvpn.txt
echo %pwd%>> c:tempconfigvpn.txt

set install_dir="C:Program Files (x86)CiscoCisco AnyConnect Secure Mobility Client"

%install_dir%vpncli.exe connect myvpn.mydomain.TLD -s < c:tempconfigvpn.txt

net use h: \fileserversharename /user:domain%user_id% %pwd%


The last line it's why we do it this way: to not prompt user password twice (first for connecting VPN and second to map network drive)



For security reasons I'm improving the script to not write password to disk. I need a fileless equivalent of this "< c:tempconfigvpn.txt"



I tried :



(
@echo %user_id%
@echo %pwd%
) | %install_dir%vpncli.exe connect myvpn.mydomain.TLD -s


Not success so far. The output is this loop:



  >> Please enter your username and password.
Group: VPN-TESTGROUP

Username: [myUsername] Password:
>> Login failed.
Group: VPN-TESTGROUP

Username: [myUsername] Password:
>> Login failed.


(repeats indefinitely)



Is there a way to do this?







windows command-line batch-file cmd.exe cisco-anyconnect






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 11 at 14:11









Filipe

312




312












  • It seems vpncli.exe supports giving the username and password as parameters. See docstore.mik.ua/univercd/cc/td/doc/product/vpn/client/3_6/…
    – LPChip
    Dec 11 at 15:38










  • so: vpncli connect myvpn.mydomain.tld user MyUser pwd MyPass
    – LPChip
    Dec 11 at 15:39












  • Actually no. This is old documentation of legacy VPN Client. I tried myself but current vpncli (referring anyconnect 4.6) throws an error using this syntax. Thanks anyway
    – Filipe
    Dec 11 at 17:47










  • Question was asked and answered on StackOverFlow
    – Squashman
    Dec 12 at 4:29


















  • It seems vpncli.exe supports giving the username and password as parameters. See docstore.mik.ua/univercd/cc/td/doc/product/vpn/client/3_6/…
    – LPChip
    Dec 11 at 15:38










  • so: vpncli connect myvpn.mydomain.tld user MyUser pwd MyPass
    – LPChip
    Dec 11 at 15:39












  • Actually no. This is old documentation of legacy VPN Client. I tried myself but current vpncli (referring anyconnect 4.6) throws an error using this syntax. Thanks anyway
    – Filipe
    Dec 11 at 17:47










  • Question was asked and answered on StackOverFlow
    – Squashman
    Dec 12 at 4:29
















It seems vpncli.exe supports giving the username and password as parameters. See docstore.mik.ua/univercd/cc/td/doc/product/vpn/client/3_6/…
– LPChip
Dec 11 at 15:38




It seems vpncli.exe supports giving the username and password as parameters. See docstore.mik.ua/univercd/cc/td/doc/product/vpn/client/3_6/…
– LPChip
Dec 11 at 15:38












so: vpncli connect myvpn.mydomain.tld user MyUser pwd MyPass
– LPChip
Dec 11 at 15:39






so: vpncli connect myvpn.mydomain.tld user MyUser pwd MyPass
– LPChip
Dec 11 at 15:39














Actually no. This is old documentation of legacy VPN Client. I tried myself but current vpncli (referring anyconnect 4.6) throws an error using this syntax. Thanks anyway
– Filipe
Dec 11 at 17:47




Actually no. This is old documentation of legacy VPN Client. I tried myself but current vpncli (referring anyconnect 4.6) throws an error using this syntax. Thanks anyway
– Filipe
Dec 11 at 17:47












Question was asked and answered on StackOverFlow
– Squashman
Dec 12 at 4:29




Question was asked and answered on StackOverFlow
– Squashman
Dec 12 at 4:29















active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1382640%2fcmd-fileless-equivalent-of-redirection%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Super User!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1382640%2fcmd-fileless-equivalent-of-redirection%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]