Anaplan Connect - Cannot enter password

Good afternoon, 

 

I am trying to upload a file using Anaplan connect. When running the batch, the windows prompts me with a password. However it seems that I'm not able to type anything for whatever key I press on the keypad. 

 

my script : 

@echo off
rem This example loads a source text file and runs an Anaplan import into a module.
rem For details of how to configure this script see doc\Anaplan Connect User Guide.doc

set AnaplanUser="sweemaels@deloitte.com"
set WorkspaceId="8a81b09d6211d5020162307d3dd37b7b"
set ModelId="B37F2E13C8E2452B95C9F8E63F23E47A"
set Operation=-service "https://api.anaplan.com" -auth "https://auth.anaplan.com" -file "Brand.txt" -chunksize 1 -put "C:\Users\sweemaels\Documents\7. Anaplan\anaplan-connect-1.4\Brand.txt "Brand from Brand.txt" -execute

rem *** End of settings - Do not edit below this line ***

setlocal enableextensions enabledelayedexpansion || exit /b 1
cd %~dp0
if not %AnaplanUser% == "" set Credentials=-user %AnaplanUser%
set Command=.\AnaplanClient.bat %Credentials% -workspace %WorkspaceId% -model %ModelId% %Operation%
@echo %Command%
cmd /c %Command%
pause

 

I've attached a capture of the windows. 

 

Thanks in advance for your help, 

 

Sarah 

 

 

Best Answer

  • This is normal ... it is actually accepting keyboard input, but not showing it on the screen for security reasons. Just hit the return key after typing the password, it should proceed to process. 

Answers