Jump to content

Briegel

Active Members
  • Posts

    234
  • Joined

  • Last visited

About Briegel

  • Birthday 12/26/1964

Profile Information

  • Location
    Germany

Briegel's Achievements

Polymath

Polymath (5/7)

0

Reputation

  1. Briegel

    HyCam2

    The download for 'HyCam2.au3' still doesn't work.
  2. In Windows XP Pro you can use "cacls.exe".
  3. Is this what you want? #Include <String.au3> $Title = WinGetTitle("Game (") $Title = _StringSplit($title, "()", 0) MsgBox(0, '', $Title[1])
  4. Maybe this can help. Opt('WINTITLEMATCHMODE', 4) $pos = ControlGetPos("classname=Shell_TrayWnd", "", "ToolbarWindow322") MsgBox(0, "TaskBar Stats:", "POS: " & $pos[0] & "," & $pos[1] & " SIZE: " & $pos[2] & "," & $pos[3])
  5. Ping ( address or hostname [, timeout] ) FileExists ( "path" )
  6. #include <Date.au3> $yesterday=_DateTimeFormat(_DateAdd('d',-1, _NowCalcDate()),2) MsgBox(0,'',$yesterday)
  7. Look at ... IniRead ( "filename", "section", "key", "default" ) GUICtrlSetData ( controlID, data [, default] ) ... in helpfile.
  8. Is this what you want? #include <GUIConstantsEx.au3> ;GUIConstants.au3 #include <EditConstants.au3> $GUI = GUICreate("PeppermintMS AutoStarter", 260, 130, -1, -1) $WorldInput = GUICtrlCreateInput("Path to 'launch_world' here!", 10, 10, 200, 20, BitOR($ES_AUTOHSCROLL, $ES_READONLY)) $WorldButton = GUICtrlCreateButton("...", 220, 7, 30) $LoginInput = GUICtrlCreateInput("Path to 'lauch_login' here!", 10, 40, 200, 20, BitOR($ES_AUTOHSCROLL, $ES_READONLY)) $LoginButton = GUICtrlCreateButton("...", 220, 37, 30) $ChannelInput = GUICtrlCreateInput("Path to 'launch_channel' here!", 10, 70, 200, 20, BitOR($ES_AUTOHSCROLL, $ES_READONLY)) $ChannelButton = GUICtrlCreateButton("...", 220, 67, 30) $Launch = GUICtrlCreateButton("Start Server!", 10, 97, 240) GUISetState() While 1 $nMsg = GUIGetMsg() Select Case $nMsg = -3 ;$GUI_EVENT_CLOSE Exit Case $nMsg = $WorldButton $launch_world = FileOpenDialog("Choose 'launch_world'!", @DesktopCommonDir, "Bat Files (*.bat)") GUICtrlSetData($WorldInput, $launch_world) Case $nMsg = $LoginButton $launch_login = FileOpenDialog("Choose 'launch_login'!", @DesktopCommonDir, "Bat Files (*.bat)") GUICtrlSetData($LoginInput, $launch_login) Case $nMsg = $ChannelButton $launch_channel = FileOpenDialog("Choose 'launch_channel'!", @DesktopCommonDir, "Bat Files (*.bat)") GUICtrlSetData($ChannelInput, $launch_channel) Case $nMsg = $Launch $Read_World = GUICtrlRead($WorldInput) $Read_Login = GUICtrlRead($LoginInput) $Read_Channel = GUICtrlRead($ChannelInput) IniWrite("C:\temp\Path.ini", "Paths", "World", $Read_World) IniWrite("C:\temp\Path.ini", "Paths", "Login", $Read_Login) IniWrite("C:\temp\Path.ini", "Paths", "Channel", $Read_Channel) EndSelect WEnd
  9. or #include <Date.au3> $yesterday=_DateAdd('d',-1, _NowCalcDate()) MsgBox(0,'',$yesterday) EDIT: to slow
  10. Works this? Opt("WinTitleMatchMode", 2) $win = WinGetPos ( "Notepad" )
  11. I would remove HD from your friend's pc and connect it to your pc (usb/pata/sata). Nothing should be blocked, i think. A great free scan engine you can find here from AVIRA.
  12. Here you can find a great UDF from JSThePatriot to take inventory from local and/or remote machines. Computer Info UDF's Enjoy it
  13. Look at help file 'RunAsSet ' ... Remarks This function allows subsequent Run and RunWait functions to run as a different user (e.g. Administrator). The function only works on the 2000/XP (or later) platforms. NT4 users should install and use the SU command from the NT Resource Kit. Use 'DriveMapAdd ( "device", "remote share" [, flags [, "user" [, "password"]]] )' with $passwort and $username.
  14. You're welcome!
×
×
  • Create New...