Jump to content

Dgameman1

Active Members
  • Posts

    280
  • Joined

  • Last visited

About Dgameman1

  • Birthday February 21

Recent Profile Visitors

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

Dgameman1's Achievements

Universalist

Universalist (6/7)

11

Reputation

  1. I know I can use _ArrayUnique to give back the Unique arrays, but I want to actually delete both of the duplicates if there's more than one at all. Local $Usernames[3] = ["Dan", "Bob", "Billy"] Local $blackListUsernames[2] = ["Dan", "Scott"] _ArrayAdd($Usernames, $blackListUsernames) ;combines the 2 arrays into 1. $Usernames = _ArrayUnique($Usernames) ;Uniques the array. This issue with this, is that $Usernames will contain Dan, Bob, Billy, Scott. I can't seem to find a way to make it so that if there are any duplicates, it'll just remove both of them, for example, I want $Usernames to have just Bob, Billy, Scott. There will only be either two or one of the same value. Never more than 2.
  2. This is what i was able to come up with so far $PowerShellCommand = "Start-Process -WindowStyle Hidden -FilePath 'C:\Program Files\Internet Explorer\iexplore.exe' 'google.com -noframemerging -private'" Run("powershell.exe -Command " & $PowerShellCommand) The issue with this is that the -WindowStyle Hidden doesn't work, but that's a powershell issue. And now powershell is visible lol. I don't want anything visible
  3. Yes. I understand. I've said multiple times that I clearly understand what you're saying. I'm the one that even wrote about it first. I said... What I've been able to find, is that if you run this command through powershell, a hidden IE window will open and navigate to a certain page. $ie = new-object -com "InternetExplorer.Application" $ie.navigate("http://launchurl") No where did I say that, that was the answer to my problem. All I said was that's what I was able to figure out with PowerShell. Not that this is what I wanted to do. So, If you're clearly hell bent on telling me that _IECreate can do this, please, show me how I can use _IECreate to create a browser that starts off HIDDEN, (Not becomes hidden after it opens, like others have kept telling me to do), with the parameters -noframemerging -private Thanks!
  4. Because I can't figure out how to do it correctly The following AutoiIt code opens up IE already hidden. Run("powershell.exe -Command New-Object -com internetexplorer.application") I don't know how to navigation and the -noframemerging -private parameters in that same line though. Making it navigate in the same line is Run("powershell.exe -Command   Start-Process -FilePath 'C:\Program Files\Internet Explorer\iexplore.exe ' 'http://www.google.com'") But that doesn't start IE as hidden
  5. What...? How would I go about doing that in IECREATE then? And I posted saying What I've been able to find, is that if you run this command through powershell, a hidden IE window will open and navigate to a certain page. $ie = new-object -com "InternetExplorer.Application" $ie.navigate("http://launchurl") Lmao, are you even reading my posts?
  6. You make a very good point. Thanks again!
  7. Ooh, perfect. I just want it to go up to 12 hours. So I'm glad it does! Thanks
  8. Thank you thank you. So using a calculator, 1.79769e+308 milliseconds would be equal to 4.99358333333333321e+301 hours. I'm assuming the calculator fucked up because that only seems like 5 hours?
  9. Right. And just to clarify, I know that some programming languages can only go up to 2,147,483,647 as an integer.
  10. I already wrote why I'm not able to do this with IECreate. I also already wrote where I put the above code.
  11. So, what's the highest number I can make TimerDiff go up to?
  12. What I've been able to find, is that if you run this command through powershell, a hidden IE window will open and navigate to a certain page. $ie = new-object -com "InternetExplorer.Application" $ie.navigate("http://launchurl")
  13. $RunWebsite.visible = False Doesn't work What would I replace '$oIE' or '$RunWebsite' with EDIT I fixed it by     If $invisible Then         $o_IE.visible = False     EndIf After I attach to the browser, but this way, the IE still flashes open for a sec. I want it to OPEN hidden, not turn hidden after being opened.
  14. While 1 While 1 Sleep(1000) WEnd ;;Anything here will never happen WEnd While 1 While 1 Sleep(1000) ExitLoop 1 WEnd ;;This will happen after the inside While loop reaches 'ExitLoop 1' WEnd
×
×
  • Create New...