-
Posts
131 -
Joined
-
Last visited
Everything posted by RestrictedUser
-
Find Administrator and Guest username
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
@brewmannh, take it ez -
Find Administrator and Guest username
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
No, It's useful for me when i want to grant a person with limited access, such as my brother! :X -
Find Administrator and Guest username
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
@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) -
Find Administrator and Guest username
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
Thanks @Subz, your code worked properly for me! -
Find Administrator and Guest username
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
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 -
Set Log On Informations for a service
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
Because i want set over 100 services in less time Is there any thing faster than SC? -
Set Log On Informations for a service
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
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 -
Set Log On Informations for a service
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
I knew this, but i should find API for speedy work I'm waiting for your best choices and reply -
Address IP Static or DHCP
RestrictedUser replied to PINTO1927's topic in AutoIt General Help and Support
@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 -
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
-
[SOLVED] Read HTML Source code
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
@mikell's way- 11 replies
-
[SOLVED] Read HTML Source code
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
Thanks bro, am already solved!- 11 replies
-
@LinkOut SendMessage doesn't works for me and refers to WinHTTP file I've enabled OpenVPN too, because I'm in restricted country please fix this problem, this UDF is very important for me please add the feature if connection was slow or disconnected then waits for connection
- 111 replies
-
[SOLVED] Read HTML Source code
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
It shows nothing bro Console output is Elapsed Exit Time- 11 replies
-
[SOLVED] Read HTML Source code
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
Nothing- 11 replies
-
[SOLVED] Read HTML Source code
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
doesn't work for me (OS: WinXP)- 11 replies
-
Hello AutoIt Scriptwriters! I want to read https based site that it's address is: Soft98 (https://soft98.ir/) I've tried with "_INetGetSource", "BinaryToString(InetRead)" and "InetRead" but none of them don't help me How can i get this site html source code without opening IE Windows?
- 11 replies
-
Change between GUIs
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
Ok, i will test -
Change between GUIs
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
I am not a professional coder, I've just coded 2 or 1 month with AutoIt I have many ways to be at least a good coder and then post HQ questions -
Change between GUIs
RestrictedUser replied to RestrictedUser's topic in AutoIt General Help and Support
@Jos, doesn't work even with using Return =(