Search the Community
Showing results for tags 'windows server 2012'.
-
We need to transfer from windows server 2012 to windows server 2016, we didn't find a way using to transfer the data automatically or to email us after tasks are finished. Is there a way to copy the data with NTFS/Shared permissions and timestamps without any loss?
- 10 replies
-
Hello AutoIt programmers🙃 I don't know how can i aware of my Server IP Address changes I want to make program and start it in to check every 1 minute my Server and if IP Address changed then Send POST Action to this URL: api.telegram.com
-
Does anyone here have experience using AutoIt on virtual Windows machines like in VirtualBox or Cloudify? I'm trying to write some AutoIt scripts but even the basic WinZip tutorial .au3 does not work on either a Windows 10 VM in VirtualBox (running over MacOS X) or on a Windows Server 2012 VM running on Cloudify/OpenStack. The Run("winzip90.exe") command works and launches the installer, but nothing I've tried to click the "Setup" button does anything. I've tried using "Send()" as documented in the tutorial, "ControlClick()", and even "MouseClick()" with coordinates but none of them seem to be clicking the button and making the install proceed. I've found some posts here that refer to using AutoIt on AWS and VMware, so I suspect there might just be something I'd need to configure somewhere, though I can't figure out what it would be.
- 2 replies
-
- virtual machine
- cloudify
-
(and 3 more)
Tagged with:
-
I´m trying to get the Keyboard language and get als return "0" wenn I do it under Windows Server 2012, I executed also in Windows 7 x64 and works fine :S Any suggestion? Appreciate it! Here my code: #include <WinAPISys.au3> Run("cmd.exe", "", @SW_HIDE) Local $hWnd = WinWait("[CLASS:ConsoleWindowClass]") Local $bNewKey = "0" & StringRight(_WinAPI_GetKeyboardLayout($hWnd), 3) MsgBox(0,"Keyboard Language", $bNewKey)