Jump to content

<<< 12Oz Computer Tech Support SuperThread >>>


Mainter

Recommended Posts

The Background Intelligent Transfer Service is missing

 

To reinstall the Background Intelligent Transfer Service, follow these steps:

1. Click Start, click Run, type the following command, and then click OK:

%windir%\System32\rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %windir%\inf\qmgr.inf

 

2. If you are prompted to insert your operating system CD, type the following path in the Copy files from box, and then click OK:

%windir%\ServicePackFiles\i386

 

Note This location contains the most recently updated service pack files. If you cannot use this path to copy the required files from, insert your operating system CD, and then click OK.

Link to comment
Share on other sites

This forum is supported by the 12ozProphet Shop, so go buy a shirt and help support!
This forum is brought to you by the 12ozProphet Shop.
This forum is brought to you by the 12oz Shop.

but hows this script look

 

Const ForcedLogoff = 4

Set oShell = CreateObject("WScript.Shell")

Set oNetwork = CreateObject("WScript.Network")

sSkriptPath=left(wscript.scriptfullname,len(wscript.scriptfullname)-len(wscript.scriptname))

strOption = 4

strComputer = "."

on error resume Next

 

Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate,(Shutdown)}\\" & _

strComputer & "\root\cimv2")

Set colOperatingSystems = objWMIService.ExecQuery ("SELECT * FROM Win32_OperatingSystem")

For Each objOperatingSystem in colOperatingSystems

ObjOperatingSystem.Win32Shutdown(strOption)

Next

Link to comment
Share on other sites

i did find this one

 

but its a little to much for me to understand

 

Here, try this one. Please, test it first!

 

'

' ***********************************************************************

' *

' * LogoffIn30 - Logs off the current user in 30 minutes

' * John Holliday - 12/29/2005 - 1.0

' * ChangeAuthorName - DateOfChange - IteratedVersionNumber

' *

' ***********************************************************************

'

Option Explicit

 

Public gobjWshShell

 

Sub ScriptInit()

Set gobjWshShell = CreateObject("WScript.Shell")

End Sub

 

Function Sleep(lintNumOfSeconds, lblnUseMilliseconds)

' Put False as the second argument to use standard seconds.

' Put True to use milliseconds.

If lblnUseMilliseconds = False Then

lintNumOfSeconds = lintNumOfSeconds * 1000

End If

WScript.Sleep lintNumOfSeconds

End Function

 

Sub ShutDown(lintShutdownType)

Dim strComputer

Dim OpSys

Dim OpSysSet

strComputer = "."

If lintShutDownType = "" then

lintShutDownType = 4

End If

Set OpSysSet = GetObject("winmgmts:{(Debug,Shutdown)}//" & strComputer & "/root/cimv2").ExecQuery("select * from Win32_OperatingSystem where Primary=true")

For Each OpSys in OpSysSet

OpSys.win32Shutdown(lintShutdownType)

Next

' The numbers in the Decimal column are for the lintShutDownType variable.

' Action Decimal Binary

' Logoff 0 0000

' Reboot 2 0010

' Force Logoff 4 0100

' Force Reboot 6 0110

' Powerdown 8 1000

' Force Powerdown 12 1100

End Sub

 

Sub RunFor30()

On Error Resume Next

Dim lblnIsDone

Dim lintNumMinutes

lintNumMinutes = 0

Do

lblnIsDone = False

Sleep 60, False

lintNumMinutes = lintNumMinutes + 1

Select Case lintNumMinutes

Case 25

gobjWshShell.Popup "Warning!" & vbCrLf & vbCrLf & "This workstaion will be logged off in 5 minutes!" & vbCrLf & "Please save your data and close any open applications." & vbCrLf & "This box will close in 15 seconds.", 15, "Logoff Warning", vbExclamation + vbOKOnly + vbSystemModal

Case 30

lblnIsDone = True

ShutDown 4

Case Else

' Do nothing

End Select

Loop Until lblnIsDone = True

End Sub

 

' Processing starts here

 

ScriptInit

RunFor30

WScript.Quit

 

' ***************

 

That's the end of the script. Remember that the "gobjWshShell.Popup" line is all on ONE line, not two. Let me know if it works.

Link to comment
Share on other sites

how do i download the embedded .wmv file here: http://www.kvue.com/sharedcontent/VideoPlayer/videoPlayer.php?vidId=136407&catId=12 ...?

 

i can figure out that the direct link is this: http://www.kvue.com/070417survivor.wmv

 

but i don't know where to do from there, as the site won't allow me to directly download from that link.

 

i'm using mozilla. thanks.

Link to comment
Share on other sites

Guest R@ndomH3ro

So I have a harddrive that wont format

 

and another that is recognized in the device manager but not in the window

 

 

should I just dban them?

 

all I want to do is reformat them and use them as storage.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...