weszzer Posted January 13, 2015 Author Share Posted January 13, 2015 You've been given solutions. You've not provided needed information... again, what version of AutoIt are you running. MsgBox(0, "Version", @AutoItVersion) Run that and tell us the output. If it's less than 3.3.12.0 then I'd suggest you go here and download the latest AutoIt https://www.autoitscript.com/site/autoit/downloads/ Then after that, download the latest "full version" of scite for autoit (the script editor). Version 3.3.12.0 Thanks Link to comment Share on other sites More sharing options...
BrewManNH Posted January 13, 2015 Share Posted January 13, 2015 whoa! SciTE4AutoIt3 is the main Autoit application No, it's not. The main AutoIt application is AutoIt3.exe or AutoIt3_x64.exe. SciTE is nothing more than a text editor, SciTE4AutoIt3 is the text editor with a set of AutoIt specific tools. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
SasiAB Posted October 4, 2017 Share Posted October 4, 2017 On 12-01-2015 at 0:40 PM, weszzer said: Hi I have a simple command in Autoit similar to the command below. Basically I'm sending a command to a cmd console. after running/opening the cmd window. My question is, how to hide the command that I send to cmd window. I would like to make the command invisible so the user cannot see the command being written in a cmd console. A blank cmd console is fine. Below sample is similar to bigger command I'm working on. Run("cmd.exe") Sleep(1000) Send ("cd\Testfolder") Send ("{Enter}") Send("myApps.exe") Send ("{Enter}") Thank you for the help Did u find any answer for this? Link to comment Share on other sites More sharing options...
Skysnake Posted October 4, 2017 Share Posted October 4, 2017 Why do you want to hide this? Why is the user not allowed to see what you are doing? Why not just run a batch file? It will be done before the user can respond anyway... ? Skysnake Why is the snake in the sky? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now