1. Search the web for info about Wininit.exe E.g. Wininit.exe file informationhttp://www.file.net/process/wininit...Excerpts:The process known as Windows Start-Up Application or Windows-Startanwendung belongs to software Microsoft Windows Operating System or Betriebssystem Microsoft Windows by MicrosofRead more

    Search the web for info about Wininit.exe

    E.g.

    Wininit.exe file information
    http://www.file.net/process/wininit…

    Excerpts:

    The process known as Windows Start-Up Application or Windows-Startanwendung belongs to software Microsoft Windows Operating System or Betriebssystem Microsoft Windows by Microsoft (www.microsoft.com).

    Description: wininit.exe is located in the folder C:\Windows\System32. Known file sizes on Windows 7/XP are 96,256 bytes (37% of all occurrences), 96,768 bytes and 6 more variants.
    Wininit.exe is a Windows system file. The program has no visible window. Wininit.exe is a trustworthy file from Microsoft. wininit.exe is able to record inputs and manipulate other programs. Therefore the technical security rating is 5% dangerous, however also read the users reviews.

    Etc.
    ………..

    Most malware these days is NOT a virus – it’s something else.

    Anything can be infected by malware, but usually ANY file that is a standard Microsoft file HAS NOT been infected.

    Do a full scan with whatever anti-malware program you have installed.
    If you don’t have any anti-malware software installed , install one !
    E.g. the free version of AVG 2012.

    (Vista and Windows 7 has Microsoft’s Windows Defender anti-spyware software built into it.)

    As an extra step, download the free version of Malwarebytes, install it, and run a Full scan with it – it will find some types of malware that other major anti-malware software can’t t find, or can find but can’t remove properly.

    See less
    • 0
  2. you might try: wmic volume list and use that as the basis for further refinements. It seems to give the association you want, of drive-letter with drive filesystem architecture. It worked ok with a simple test I ran: wmic volume list | find /I "ntfs" | find /I "C:"

    you might try: wmic volume list
    and use that as the basis for further refinements. It seems to give the association you want, of drive-letter with drive filesystem architecture. It worked ok with a simple test I ran:
    wmic volume list | find /I “ntfs” | find /I “C:”

    See less
    • 0
  3. My code page is set to 437, and my scripts have no trouble with these characters. What editor are you using? I had to use qbasic or debug to insert the characters into the batch. vbscript can also be used to build the characters: set fso=createobject("scripting.filesystemobject") set test=fso.createRead more

    My code page is set to 437, and my scripts have no trouble with these characters. What editor are you using? I had to use qbasic or debug to insert the characters into the batch. vbscript can also be used to build the characters:
    set fso=createobject(“scripting.filesystemobject”)
    set test=fso.createtextfile(“test”)
    test.write chr(200)+chr(197)
    test.close
    If you “type” test, you should see the ascii-graphics on the screen.
    And/or, cut/paste the following lines using notepad and save the file. Go to command prompt and “type” the file. If you see boxes, then the experiment worked. If it fails, try chcp 437 and try again.

    set L1=ÚÄÄÄÄÄÄÂÄÄÄÄÄÄÂÄÄÄÄÄÄÂÄÄÄÄÄÄÂÄÄÄÄÄÄÂÄÄÄÄÄÄÂÄÄÄÄÄÄ¿
    set L2=ÃÄÄÄÄÄÄÅÄÄÄÄÄÄÅÄÄÄÄÄÄÅÄÄÄÄÄÄÅÄÄÄÄÄÄÅÄÄÄÄÄÄÅÄÄÄÄÄÄ´
    set L3=ÀÄÄÄÄÄÄÁÄÄÄÄÄÄÁÄÄÄÄÄÄÁÄÄÄÄÄÄÁÄÄÄÄÄÄÁÄÄÄÄÄÄÁÄÄÄÄÄÄÙ

    I think the problem is whatever editor you’re using. EDIT will show the characters as graphics, but will not, as far as i know, allow their creation. vbscript, BASIC (any), and debug will let you create the characters.

    See less
    • 0
  4. Are you sure that there is a space between the closing and opening braces at the end of line 2? Lack of space here can throw the interpreter.

    Are you sure that there is a space between the closing and opening braces at the end of line 2? Lack of space here can throw the interpreter.

    See less
    • 0
  5. Windows just runs anything it finds in there, pretty powerful if you ask me. Note this is after startup, not during startup, like autoexec used to be :) And if he is deleting the file still, just rename it (with an executable extension of course).

    Windows just runs anything it finds in there, pretty powerful if you ask me. Note this is after startup, not during startup, like autoexec used to be 🙂
    And if he is deleting the file still, just rename it (with an executable extension of course).

    See less
    • 0
  6. Assumed the first line of the file holds just the number and nothing else starting at position one (or zero), thenset /P num=< file.txt set num=0000%num% ren file.txt %num:~-5%.txt

    Assumed the first line of the file holds just the number and nothing else starting at position one (or zero), then

    set /P num=< file.txt
    set num=0000%num%
    ren file.txt %num:~-5%.txt
    

    See less

    • 0
  7. This gets 72 and 'the rest', whatever 'the rest' happens to be. ::====== script starts here =============== :: :: Dansplit.bat 2015-09-10 12:55:13.79 @echo off > NEWFILE & setLocal enableDELAYedeXpansioN :main for /f "tokens=* delims= " %%a in (myfile) do ( set S=%%a set H=!S:~0,72! set T=!S:Read more

    This gets 72 and ‘the rest’, whatever ‘the rest’ happens to be.
    ::====== script starts here ===============
    ::
    :: Dansplit.bat 2015-09-10 12:55:13.79
    @echo off > NEWFILE & setLocal enableDELAYedeXpansioN

    :main
    for /f “tokens=* delims= ” %%a in (myfile) do (
    set S=%%a
    set H=!S:~0,72!
    set T=!S:~72!
    echo.!H!
    echo.!T!
    ) >> NEWFILE
    goto :eof
    ::====== script ends here =================

    =====================

    See less
    • 0
  8. To resolve the above error message, follow the below mentioned steps:1. Click File, then choose Save As.2. Save the PowerPoint file at a new destination with the same or a new name.For more: http://www.ask.com/answers/61085998...

    To resolve the above error message, follow the below mentioned steps:

    1. Click File, then choose Save As.
    2. Save the PowerPoint file at a new destination with the same or a new name.

    For more: http://www.ask.com/answers/61085998…

    See less
    • 0