Jump to content

editing autoit script & compile it without access harddisk


Recommended Posts

Hey all autoit  forum users ..

i am working on autoit script 

i need to editing .au3 script and compile it without access to harddisk file cause i want no one when used the programme seen the .au3 file and thanks all .. sry for  bad english

Link to comment
Share on other sites

Hey all autoit  forum users ..

i am working on autoit script 

i need to editing .au3 script and compile it without access to harddisk file cause i want no one when used the programme seen the .au3 file and thanks all .. sry for  bad english

Link to comment
Share on other sites

You don't want anyone to see the .au3 file and just to run the compiled  .exe file?  Compile on a different machine and copy the .exe to the target machine.

Edited by aleph01

Meds.  They're not just for breakfast anymore. :'(

Link to comment
Share on other sites

Just now, aleph01 said:

You don't want anyone to see the .au3 file and just to run the compiled  .exe file?  Compile on a different machine and copy the .exe to the target machine.

bro i mean when users use my programme , they build a .au3 file and compile it and user can steal the code i need directly compile without harddisk

Link to comment
Share on other sites

  • Developers

It is still not making much sense to me. Why would the user need to compile it anyways? 
Do you need to make changes to the script for each user or something?
Which change do you need to make and can't they be stored in the Registry of INI file?

Jos

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Just now, Jos said:

It is still not making much sense to me. Why would the user need to compile it anyways? 
Do you need to make changes to the script for each user or something?
Which change do you need to make and can't they be stored in the Registry of INI file?

Jos

yeah , i need to make changes to the script for each user 

i need to edit something on every user script & ty

Link to comment
Share on other sites

  • Developers

.. and what about you share the exact details of what you want so we can try to help you?

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Just now, Jos said:

.. and what about you share the exact details of what you want so we can try to help you?

Jos

i am working on rdp auto login software by one click 

each  has ip and user name and password 

i want user to build file without access the harddisk for example

the user run the originale builder.exe and put rdp information and now will click on build button the programme will make .au3 file and edit it and  creat autordplogin.exe but i want the programme build autordplogin.exe without making an  .au3 file i hope u understand and sry for bad english

 

Link to comment
Share on other sites

  • Developers

I still fail to see why you want to do it that way, plus the fact that RDP has a userid/password prompt for a reason.
RDP will autologin when the client PC and Server are part of the same AD or else you get the prompt for security reasons.
anyway: I still fail to understand the part about access to the harddisk en compilation. Why is that is that so important and why not simply store information you want to save encrypted in an INI file or Registry?

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

@salah kai Do want to make a builder which builds a version of you au3 script with the custom RDP login details so that the built EXE would always connect to the same RDP without any prompt?

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Link to comment
Share on other sites

  • Moderators
On 6/24/2017 at 8:43 PM, aleph01 said:

Gotcha, JLogan3o13, but it seems I'm in for a dollar at this point.  Point taken, never again.

I was talking to the OP and his double post

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

On 6/25/2017 at 2:14 AM, TheDcoder said:

@salah kai Do want to make a builder which builds a version of you au3 script with the custom RDP login details so that the built EXE would always connect to the same RDP without any prompt?

yeah  this is it , but i dont want the au3 fil created in hardisk i thing i need another idea to buid it in memory or somthing 

Link to comment
Share on other sites

https://www.autoitscript.com/forum/topic/96783-dllcall-for-cryptunprotectdata/
https://www.autoitscript.com/forum/topic/96783-dllcall-for-cryptunprotectdata/?do=findComment&comment=695769
https://msdn.microsoft.com/en-us/library/windows/hardware/dn567648(v=vs.85).aspx
https://www.donkz.nl/overview-rdp-file-settings/
https://technet.microsoft.com/en-us/library/ff393699(v=ws.10).aspx

Use the above links to get what you need.
All you need is to build the RDP file, that's all.
And you can change your frame of mind / criteria, and build something more efficient. Like a user client that get the info from a server master that send the data in a encrypted string via TCP (or UDP), or a thousand different ideas other than what you believe to be best based in your experience.

Anyway, the above links will open your horizons.

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

Link to comment
Share on other sites

8 hours ago, salah kai said:

but i dont want the au3 fil created in hardisk i thing i need another idea to buid it in memory or somthing

You can create a base EXE and you can use the ResourcesEx UDF in the builder to embed information into your base EXE ;)

 

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Link to comment
Share on other sites

On 6/26/2017 at 0:18 PM, argumentum said:
https://www.autoitscript.com/forum/topic/96783-dllcall-for-cryptunprotectdata/
https://www.autoitscript.com/forum/topic/96783-dllcall-for-cryptunprotectdata/?do=findComment&comment=695769
https://msdn.microsoft.com/en-us/library/windows/hardware/dn567648(v=vs.85).aspx
https://www.donkz.nl/overview-rdp-file-settings/
https://technet.microsoft.com/en-us/library/ff393699(v=ws.10).aspx

Use the above links to get what you need.
All you need is to build the RDP file, that's all.
And you can change your frame of mind / criteria, and build something more efficient. Like a user client that get the info from a server master that send the data in a encrypted string via TCP (or UDP), or a thousand different ideas other than what you believe to be best based in your experience.

Anyway, the above links will open your horizons.

Ty bro that what i searching for :) 

Edited by salah kai
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...