I am trying to create a window that can't be moved. I tried to run maximized, but the window does not react like normal applications, it can be moved if click and drag on the title bar.
Is there a way of preventing the window to be movable? or to disable the title bar?
I can't find any relevant topics in the forum or the help file.
Thanks for your help.
Have you tried to call the VB script using the UNC path rather than the mapped drive? I had the same problem with runasset.
Also, when the button is clicked, does the VB script use UNC or mapped paths?
Problem could be that when you use runasset, the workstation disregards the drive mapping from the logged on user. If your script is using mapped drives, then change to UNC names and it should work.
I am trying to replace all instances of a single quotation mark in a text file with "'" (single quotation mark between 2 double quotation marks) in order to import the result in a SQL database, which does not like single quotation marks.
Basically it is a name import. All works well until the import process encounters O'Donnell.
Any suggestions would be welcome.
THe following example runs net.exe, gets the result into a file a.tmp
RunWait(@ComSpec & " /c net user /DOMAIN > a.tmp", @ScriptDir, @SW_HIDE)
Hope it helps
Since installing beta 133 some scripts that relied on INet.au3 have stopped working.
This was brought up in this post
View Post
Unfortunately the post does not offer a solution and I am wondering if the missing code will be re-added to INet.au3 or how to go about fixing the problem.
Any help is highly appreciated.
Is there a plan to re-include the necessary source in Inet.au3 to make it work again? If not, what is the solution to make the scripts created with an "old" version of Inet.au3 function again?
Hi,
Pardon my ignorance:
I am trying to get a list of all users in a Domain (ADS). I only require the LoginName to be returned, no other information.
I have tried to make sense of some scripts I found on the forum, but I am having some difficulties in isolating the parts I need.
Any help would be most appreciated.