1. Hi,"but you have to download something."We do all time :)"Still trying to figure out how to send the keys to notetab pro."Open notetad pro and sendkey after?@echo offstart C:"Program Files"\NotetadPro\NotetadPro.exenircmd.exe wait 5000nircmd.exe sendkey t pressnircmd.exe wait 1000nircmd.exe sendkeyRead more

    Hi,

    “but you have to download something.”
    We do all time 🙂

    “Still trying to figure out how to send the keys to notetab pro.”
    Open notetad pro and sendkey after?

    @echo off
    start C:”Program Files”\NotetadPro\NotetadPro.exe
    nircmd.exe wait 5000
    nircmd.exe sendkey t press
    nircmd.exe wait 1000
    nircmd.exe sendkey h press
    nircmd.exe wait 1000
    nircmd.exe sendkey i press
    nircmd.exe wait 1000
    nircmd.exe sendkey s press
    nircmd.exe wait 1000
    nircmd.exe sendkey 0x20 press
    nircmd.exe wait 1000
    nircmd.exe sendkey i press
    nircmd.exe wait 1000
    nircmd.exe sendkey s press
    nircmd.exe wait 1000
    nircmd.exe sendkey 0x20 press
    nircmd.exe wait 1000
    nircmd.exe sendkey a press
    nircmd.exe wait 1000
    nircmd.exe sendkey 0x20 press
    nircmd.exe wait 1000
    nircmd.exe sendkey t press
    nircmd.exe wait 1000
    nircmd.exe sendkey e press
    nircmd.exe wait 1000
    nircmd.exe sendkey s press
    nircmd.exe wait 1000
    nircmd.exe sendkey t press
    msg * Script ended
    exit

    Virtual Key Code of space bar = 0x20

    (Virtual key codes) – http://www.kbdedit.com/manual/low_l…

    Regards,

    MUs

    Happy is ONE who says I am an OttoMAN.

    See less
    • 0
  2. Truthfully, I have never heard of the errorlevel going 0,1,2,4,5. The most errors I have ever had in a program is 1. What I think you need to try is a success/fail setup. Basically, replace your if errorlevel lines with this:if errorlevel 1 goto failureif errorlevel 0 goto successThen have failure sRead more

    Truthfully, I have never heard of the errorlevel going 0,1,2,4,5. The most errors I have ever had in a program is 1. What I think you need to try is a success/fail setup. Basically, replace your if errorlevel lines with this:

    if errorlevel 1 goto failure
    if errorlevel 0 goto success

    Then have failure setup as:

    :FAILURE
    CLS
    ECHO Backup has failed! Please see XCOPY.LOG.
    GOTO END

    I added the sentence “Please see XCOPY.LOG.” for a reason. If you still wanted to know what the errors were, you can setup the XCOPY command like this:

    xcopy i:\*.* h:\archive\graphics\%INPUT% /D/E/R/I/K/-Y/exclude:i:\ErrorMssg\omit.txt > XCOPY.LOG

    What the extra code will do is create a file showing what would appear on the screen when executing the XCOPY command, including the errors, in the directory the batch file is located. I created a little remap of the entire code from post #10. Take a look:

    @echo off
    set INPUT=
    set /p INPUT= Enter PREVIOUS Date (ddmmyyyy) for which you want to create an ARCHIVE folder:
    md h:\archive\graphics\%INPUT%

    xcopy i:\*.* h:\archive\graphics\%INPUT% /D/E/R/I/K/-Y/exclude:i:\ErrorMssg\omit.txt > XCOPY.LOG

    if errorlevel 1 goto failure
    if errorlevel 0 goto success

    :FAILURE
    CLS
    ECHO Backup has failed! Please see XCOPY.LOG.
    GOTO END

    :success
    echo y | rd /s/q i:\DailyWork
    echo y | del i:\Clients.xls
    echo The backup was successful.
    goto end

    :end
    pause
    exit

    Perhaps try it out and see if you like it?

    Mouse could not be found. Click OK to continue.
    What to do now?

    See less
    • 0
  3. The "delims=" is killing it. Run without that clause:for /f "tokens=6" %%i in (%Server%%ParamS:~0,3%\%ParamS:~0,5%\%ParamS%\Support\%Param%.txt) do (set ParamD=%%i)This will default to delims as tabs and spaces. ("delims=" means no delimiters in effect). Note that spaces in the data might still killRead more

    The “delims=” is killing it. Run without that clause:
    for /f “tokens=6” %%i in (%Server%%ParamS:~0,3%\%ParamS:~0,5%\%ParamS%\Support\%Param%.txt) do (
    set ParamD=%%i
    )
    This will default to delims as tabs and spaces. (“delims=” means no delimiters in effect). Note that spaces in the data might still kill you since those and tabs are counted equally. If that happens, you need to specify the TAB only. A sample of the data-file would help to resolve.
    ps: I recommend always run tests with cascading complexity. Run initial tests with bare minimum (both code AND data),, then work up from there, and use LOTS of echos and pauses to examine variable values and code-location.

    message edited by nbrane

    See less
    • 0
  4. Interesting question. I don't believe so, probably because the prime focus of ADWCleaner is browser malware.I tried copying a C drive program folder that ADWCleaner reports onto an external drive and it still only reported the copy which was on the C drive. I repeated this with the ADWCleaner downloRead more

    Interesting question. I don’t believe so, probably because the prime focus of ADWCleaner is browser malware.

    I tried copying a C drive program folder that ADWCleaner reports onto an external drive and it still only reported the copy which was on the C drive. I repeated this with the ADWCleaner download on the external and it gave the same results.

    As ADWCleaner looks for different things to Windows Defender it is not unreasonable to expect the latter to find something after ADWCleaner has run. This is why to properly clean a computer you need to run several programs. ADWCleaner and MalwareBytes are usually a very good start.

    Let Johnw see the logs as per #3.

    Always pop back and let us know the outcome – thanks

    See less
    • 0
  5. Does it have to be Solaris 8? Oracle provide a ready-built Solaris 11 virtual machine.http://www.oracle.com/technetwork/s...

    Does it have to be Solaris 8? Oracle provide a ready-built Solaris 11 virtual machine.

    http://www.oracle.com/technetwork/s…

    See less
    • 0
  6. Control - will shrink the contents of the screen and that should work.(Control Key plus the - sign zooms out so it will all fit and the Control plus the + will zoom in to read tiny details)You have to be a little bit crazy to keep you from going insane.

    Control – will shrink the contents of the screen and that should work.
    (Control Key plus the – sign zooms out so it will all fit and the Control plus the + will zoom in to read tiny details)

    You have to be a little bit crazy to keep you from going insane.

    See less
    • 0
  7. You need TWO NICs to use Windows VPN. One NIC for your Private network and the Second NIC for your Virtual Private Network. Install another NIC in your computer and it can not be Teamed.Good luck with this. It is way easier to get a router with VPN Combiner than it is to use Windows VPN.

    You need TWO NICs to use Windows VPN. One NIC for your Private network and the Second NIC for your Virtual Private Network. Install another NIC in your computer and it can not be Teamed.

    Good luck with this. It is way easier to get a router with VPN Combiner than it is to use Windows VPN.

    See less
    • 0
  8. We can't help you bypass security, particularly on a server, particularly on a system with an unknown history.

    We can’t help you bypass security, particularly on a server, particularly on a system with an unknown history. See less
    • 0
  9. If you are enforcing password history you must set a value > 0 for minimum password age.http://technet.microsoft.com/en-us/...

    If you are enforcing password history you must set a value > 0 for minimum password age.

    http://technet.microsoft.com/en-us/…

    See less
    • 0