Jump to content

RestrictedUser

Active Members
  • Posts

    131
  • Joined

  • Last visited

About RestrictedUser

  • Birthday 12/08/1999

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

RestrictedUser's Achievements

Adventurer

Adventurer (3/7)

1

Reputation

  1. No, It's useful for me when i want to grant a person with limited access, such as my brother! :X
  2. @Subz, I have similar question: How can i find and detect "Administrators" and "Remote Desktop Users" name in Local Groups? because I saw another languages that they were; Administrators =====> Administradores (Germany) Remote Desktop Users ======> Usuarios de escritorio remoto (Spannish)
  3. Thanks @Subz, your code worked properly for me!
  4. I want to automatically detect name of Administrator and Guest accounts in another system that have non-english language _AccountEnum can't help me in this issue
  5. Hi AutoIt scriptwriters! In some of windows operating systems, i saw that "Administrator" and "Guest" username in different languages are "Administradore" and "Gast" and etc. How to make a simple script to find Administrator and Guest username in different language in these systems?
  6. Because i want set over 100 services in less time Is there any thing faster than SC?
  7. Hmm, that was old topic but thanks bro! Is there any Windows API for doing this action? I want make my script speedy, Speed and Time is important for me
  8. I knew this, but i should find API for speedy work I'm waiting for your best choices and reply
  9. Hi AutoIt Scriptwriters! How can i set login information while running and existed service? Is there any UDF or API Function for Log On tab of this Area? I want to set "This account" and Enter my favorite user Without doing MouseClick and Macro
  10. @JLogan3o13, How can i Get just this IP in below picture that we connect to RDP? I want to run the script in RDP too... i don't want use @IPAddress macros or _GetIP(), because in some of my RDPs i get wrong IP
  11. @mikell, thanks for your Regular Expression, i think you've decreased cpu usage with your approach
  12. Hi AutoIt Scriptwriters! I want to extract my RDPs informations and write in file/console here is my code: $txt = "127.0.0.1:3389@Administrator;12345" & @CRLF & "120.0.0.1:3389@Guest;54321" $ArrayTXT = StringSplit($txt, @CRLF, 3) For $IP In $ArrayTXT $Ex_IPAddress = StringRegExpReplace($IP, ":.*", "") $Ex_IPAddressPort = StringRegExpReplace($IP, "@.*", "") $Ex_DomainUsername = StringRegExpReplace(StringRegExpReplace($IP, ";.*", ""), ".*@", "") $Ex_Password = StringRegExpReplace($IP, ".*;", "") $O_RDPFile = "full ip address: " & $Ex_IPAddressPort & @CRLF & "username: " & $Ex_DomainUsername & @CRLF & "password: " & $Ex_Password & @CRLF & @CRLF ConsoleWrite($O_RDPFile) Next I want to extract texts, convert them and then show in console or write in file like this: full ip address: 127.0.0.1:3389 username: Administrator password: 12345 full ip address: 120.0.0.1:3389 username: Guest password: 54321 [SOLVED] I've putted on right code here, you can use this little code if you need
  13. yep, but you can do this: _ArrayToString(_StringBetween("Text", "Left", "Right"))
×
×
  • Create New...