Jump to content

JerryWu

Members
  • Posts

    8
  • Joined

  • Last visited

JerryWu's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Yes, you have posted the same code, but I'm not sure AutoIt Script whether support my idea at that time.
  2. Got it, Thank you very much! let me use this instead. Jerry
  3. I want to hide the close button, none in your mentioned. please refer to the attach file. Thanks.
  4. Yeah, msgboxcustom just disable close button, but not hide it. I want to whether AutoIt Script support hiding close button, but leave Icon on the title.
  5. Got it, Thank you very much. Jerry
  6. Hi, I want to hide this three buttons, but don't lose the icon, Do you have any ideas? Thanks, Jerry
  7. Much appreciate ! I have found some Example Script about Win32_OperatingSystem. Func _ComputerGetOSs(ByRef $aOSInfo) in the following link: https://code.google.com/p/jint-autoit/source/browse/trunk/example/ComputerInfo/CompInfo.au3 we need to use WMI to retrieval system info, but I don't want to retrieval through WMI. Do you have any suggestion? Thanks.
  8. Hi, Can someone help me out here? There is a solution can detect windows server 2003 R2 with WMI. We can determine the OSversion 'WIN_2003' with macro @OSVersion. Then, Get OtherTypeDescription through WMI. Func _GetOSVersion() Local $objWMIService = ObjGet("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2") Local $colSettings = $objWMIService.ExecQuery("Select * from Win32_OperatingSystem") For $objOperatingSystem In $colSettings Return $objOperatingSystem.OtherTypeDescription Next EndFunc ;==>_getOSVersion MsgBox(0,0, _GetOSVersion()) Is there any other approach to Detect windows server 2003 R2? such as registry etc. Any suggestions appreciated, Jerry
×
×
  • Create New...