New Office 2010 Repository

Discussion in 'Microsoft Office' started by WinFLP, Jul 30, 2010.

  1. WinFLP

    WinFLP MDL Senior Member

    Nov 18, 2009
    497
    283
    10
    It's not because "there's no SP3". XP 64 bit is at service pack parity with Server 2003, since it's essentially the same product, and SP2 is the most current, and supported service pack level for server 2003. For whatever reason Microsoft decided to not support 64 bit Server 2003 / XP. Note that they support 32 bit Server 2003 SP2.
     
  2. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,524
    4,112
    270
    #142 timesurfer, Sep 17, 2010
    Last edited by a moderator: Apr 20, 2017
    What am I doing wrong with this?

    Code:
    schtasks create /tn "Office" /tr "C:\Users\timesurfer\My Documents\My Dropbox\Public\KMS Activation Script for Z.W.T Keygen" /sc /mo 7 /st 00:00:00 /ru /f
    I want it to work every 6 months and run silent as user account "SYSTEM"

    Thank you kindly
     
  3. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    #143 MasterDisaster, Sep 17, 2010
    Last edited by a moderator: Apr 20, 2017
    Try this
    Code:
    schtasks create /tn "Office" /tr "C:\Users\timesurfer\My Documents\My Dropbox\Public\KMS Activation Script for Z.W.T Keygen.bat" /sc /mo 6 /st 00:00:00 /ru "" /f
    EDIT: You need to add the extension such as .bat to the script name.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,524
    4,112
    270
    #144 timesurfer, Sep 17, 2010
    Last edited by a moderator: Apr 20, 2017
    I keep getting invalid syntax
     
  5. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    #145 MasterDisaster, Sep 17, 2010
    Last edited by a moderator: Apr 20, 2017
    Code:
    schtasks /create /tn "Office" /tr "C:\Users\timesurfer\My Documents\My Dropbox\Public\KMS Activation Script for Z.W.T Keygen.exe" /sc /mo 6 /st 00:00:00 /ru "" /f
    / before create is missing.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,524
    4,112
    270
  7. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    Add monthly after /sc
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,524
    4,112
    270
    #148 timesurfer, Sep 17, 2010
    Last edited: Sep 17, 2010
    Thank you that was the final touch

    Take care

    Edit: I noticed when I run the task and check status the minutes don't change. How can I check if task is really running even though it runs with SYSTEM

    I've tried different paths but task never runs?

    Thank you
     
  9. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    #149 MasterDisaster, Sep 17, 2010
    Last edited by a moderator: Apr 20, 2017
    What does the Last Run Result column say?

    I think the problem is because there are spaces in the file path.

    Try this
    Code:
    schtasks /create /tn "Office" /tr '"C:\Users\timesurfer\My Documents\My Dropbox\Public\KMS Activation Script for Z.W.T Keygen.exe"' /sc monthly /mo 6 /st 00:00:00 /ru "" /f
    
    I have added single quote around the double quotes, so that will solve your problem.

    Using /sc monthly /mo 6 /st 00:00:00 will schedule a task to run on 1st of June and December at 12 AM. Is that what you are aiming to create or something else?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. spiralien

    spiralien MDL Senior Member

    Aug 25, 2009
    275
    515
    10
    #150 spiralien, Sep 17, 2010
    Last edited by a moderator: Apr 20, 2017
    Excuse my poor english.
    Are you sure that the "My documents" path is
    Code:
    C:\Users\timesurfer\My Documents\
    On my PC, the good path is Documents in the end
    Code:
    C:\Users\timesurfer\Documents\
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    C:\Users\timesurfer\My Documents\ is the correct or actual path. If you use Libraries then it will be Libraries > Documents

    Hope that is clear.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,524
    4,112
    270
    It's clear but when I look at properties of the .exe it says

    C:\Users\timesurfer\Documents\My Dropbox\Public\KMS\Office Volume Activation Script for Z.W.T Keygen

    and this is my code

    schtasks /create /tn "Office" /tr "C:\Users\timesurfer\My Documents\My Dropbox\Public\KMS\Office Volume Activation Script for Z.W.T Keygen.exe" /sc monthly /mo 6 /st 12:00:00 /ru "" /f

    so I'm confused why it won't run. I mean it should run right? And it should reset the minutes so I'd know it ran but I can't figure it out. Also apparantly there is a similar path through libraries to documents then dropbox but indeed the timesurfer folder is in the desktop location

    So I'm stumped. This was why I stopped using 2010 not your code or the keygen necessarily just the task won't run...lol

    Thanks for your time and effort MasterDisaster
     
  13. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    The above post was a response to spiralien's post, was not intended for you. Have you tried this?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,524
    4,112
    270
    lol...I tried your post but still won't run. Shouldn't it say running when I run task cause it says only ready?

    This is what I have now

    schtasks /create /tn "Office" /tr '"C:\Users\timesurfer\My Documents\My Dropbox\Public\Office Volume Activation Script for Z.W.T Keygen.exe"' /sc monthly /mo 6 /st 00:00:00 /ru "" /f

    Maybe you could use TV if that would help?

    Thank you
     
  15. spiralien

    spiralien MDL Senior Member

    Aug 25, 2009
    275
    515
    10
    For Windows, C:\Users\timesurfer\Documents, it's the good path ( for me, also ).
    For MasterDisaster, No.

    Where is the truth ?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. Bosh

    Bosh MDL Developer

    May 30, 2010
    613
    297
    30
    I think it's because either he's using Windows XP or he changed the location of "Documents" (maybe because of the old files after installing W7 over XP)..
     
  17. spiralien

    spiralien MDL Senior Member

    Aug 25, 2009
    275
    515
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. Bosh

    Bosh MDL Developer

    May 30, 2010
    613
    297
    30
    Windows now uses directory "alias" (I don't know the real name for that).. In spanish (my mother language) in XP the document's folder was named "Mis Documentos" and in english was named "My Documents". Now in Windows 7 the real folder name is always "Documents", it doesn't matter if the OS is in spanish, french, or whatever language you're using, althouhg I see the folder name as "Documentos", in the real path it's clearly named "Documents"
     
  19. spiralien

    spiralien MDL Senior Member

    Aug 25, 2009
    275
    515
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...