Jump to content

stinson6016

Active Members
  • Posts

    41
  • Joined

  • Last visited

About stinson6016

  • Birthday 08/22/1980

Profile Information

  • Location
    North GA

stinson6016's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I need a little help, I found a php file that uses curl to pull the warranty info from a dell site. The php file uses a cookie to pass the service tag to dell and pulls the raw data back then processes that data. I'm still at the point of getting the cookie to pass to dell. I have tried several different things for the past several hours and can only seem to get this to work with php on linux; not autoit on windows If any one has any ideas please let me know; I'm so frustrated with this right now. #include <cURL.au3> cURL_initialise() $url = "http://www.dell.com/support/troubleshooting/us/en/04/TroubleShooting/Display_Warranty_Tab?name=TroubleShooting_WarrantyTab" $cookie_file = @ScriptDir & "cookie.txt" $out = cURL_easy($url, $cookie_file, 1, 0, "", "", 0, 1, 1) ; Output the HTML to the console ;~ ConsoleWrite($out) MsgBox(0, "", $out) ; Clean up cURL cURL_cleanup() the cookie in php $strCookie = "name=OLRProduct; OLRProduct=".$ServiceTag."|;";
  2. I work in for a small IT company and often get to clean out malware off computers. I've noticed that alot of malware likes to put itself in certain folders that should not have any applications at all. If an application is found it kills the process and right now moves the file. So far in the last week it's saved me several hours of clean up on just one server alone. This is the program as I use it, so you may want to tweak some settings. Folders that are checked: Windows Vista, 7, 2008, 2008R2 C:\ProgramData C:\Users\user-name\AppData\Roaming C:\Users\user-name\AppData\Local C:\Users\user-name\AppData\LocalLow Windows 2000, XP, 2003 C:\Documents and Settings\All Users\Application Data C:\Documents and Settings\user-name\Application Data C:\Documents and Set
  3. i don't have someone to play with, but it's a nice start i'll look at it more in a tad
  4. i was trying to do a home made kiosk with out having the explorer maxed I have the winLockdll.dll but never looked into what else it could do, thanks a lot y'all
  5. I was wondering if there is a way to hide the start bar and everything that goes with it? Kind of like how windows looks when explorer process is closed?
  6. That's funny. I like that
  7. I started this project for work last year to allow me to set up computers faster at work. With the new version of auto it and the UDP Broadcast to all address on the subnet the program just got a lot easier to setup. Really there is no setup now, just run the program and it works. I don't have to tell the server where the clients are to send to them any more. I set up my server open a port on UDP to address x.x.x.255 (the x.x.x = what ever IP scheme you are using) and that allows broadcasting to all addresses. I have only used this on Windows XP here at work as that is all we use. I didn't find any bugs other then my wireless laptop doesn't do work well running the client for some reason it receives everything twice. I don't understand why this is but when the wireless laptop is running the server there is no problems. I use the MouseSetonEvent UDF by MrCreatoR (Here) Works great for what I'm doing Patrick and for got to post the script I forgot to post the commands, On the server program: Ctrl+1 : send to the clients to reposition the active window Ctrl+2 : Toggles broadcast on and off Ctrl+ BS : Exit On the client program (echoer): Ctrl+1 : change the port being used Ctrl+2 : Toggles listen on and off Ctrl+End : Exit These commands are listed when you run the program and hover the mouse over the icon in the system menu. But I just wanted to make sure yous all to know.
  8. Nice, very nice
  9. $file_exist = FileExists(@ScriptDir & "/dir2/" & $file) $file_size2 = FileGetSize($file_exist) FileExists (from the help file) Return Value Success: Returns 1. Failure: Returns 0 if path/file does not exist. you are getting the file size of a 1 or 0 not the file you are looking for
  10. Hey, that seems to fix the problem that I was having! I wasn't even looking to fix that error and stumbled across this and tried it out. Thanks for the tip.
  11. Really cool
  12. that's really cool, I have to say thumbs up!
  13. When I try this script with any other image it fails when loading image from data base, am I missing at setting some where?
  14. sqlite fun
  15. that's really cool, side note how do you get the update.txt do not show on code.google?
×
×
  • Create New...