Windows 2012 R2 Taskbar - PinItem.vbs
Ich habe diese "schöne" und recht aktuelle Lösung gefunden:
http://social.technet.microsoft.com/wiki/contents/articles/28239.how-to ...
um die Taskbar meiner Remotedesktop Benutzer unter Windows 2012 R2 anzupassen.
Leider funktioniert es weder als RD-Benutzer noch lokal auf meinem Windows 7 und ich verstehe wirklich nicht genug vbs um den Fehler auszumachen. Der Aufruf als solches sieht vielversprechend aus aber es passiert nichts. Edit: Weder in der Registry noch auf dem Dateisystem. /Edit
Nutzt jemand dieses Script und kennt die Ursache?
http://social.technet.microsoft.com/wiki/contents/articles/28239.how-to ...
um die Taskbar meiner Remotedesktop Benutzer unter Windows 2012 R2 anzupassen.
Leider funktioniert es weder als RD-Benutzer noch lokal auf meinem Windows 7 und ich verstehe wirklich nicht genug vbs um den Fehler auszumachen. Der Aufruf als solches sieht vielversprechend aus aber es passiert nichts. Edit: Weder in der Registry noch auf dem Dateisystem. /Edit
Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. Alle Rechte vorbehalten.
c:\>cscript \\Server\NETLOGON\taskbar\PinItem.vbs /taskbar /item:"c:\windows\system32\mspaint.exe"
Microsoft (R) Windows Script Host, Version 5.8
Copyright (C) Microsoft Corporation 1996-2001. Alle Rechte vorbehalten.
PinItem.vbs
Command Line Options:
=======================================
Pin to Taskbar instead of Start Menu: Wahr
Item to pin to Start Menu or Taskbar: c:\windows\system32\mspaint.exe
Folder: c:\windows\system32
File: mspaint.exe
Item pinned: Wahr
Nutzt jemand dieses Script und kennt die Ursache?
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 277359
Url: https://administrator.de/contentid/277359
Ausgedruckt am: 24.11.2024 um 06:11 Uhr
8 Kommentare
Neuester Kommentar
Da fehlt doch das eigentliche Skript?
Zeile 9 ruft das skript auf,
Das ist nur der Aufruf zum Skript
da kommt nicht also paasiert nix
guck mal hier
Du benötigt declaire
dann eine Schleife mit absprung
und ein Ende des Skrips.
Das ist wie du hast ein Auto, dass soll fahren, aber ist kein Motor vorhanden .
Beispiel
https://gist.github.com/sirlancelot/368910
File: PinItem.vbs
'* Date: 03/04/2009
'* Version: 1.0.2
'*
'* Main Function: VBScipt to pin an item to the Start Menu or Taskbar
'*
'* Usage: cscript PinItem.vbs /item:<path to exe>
'* [/taskbar] [/?]
'*
'* Copyright (C) 2009 Microsoft Corporation
'*
'* Revisions:
'*
'* 1.0.0 - 04/03/2008 - Created.
'* 1.0.1 - 03/02/2009 - Used Replace in PinItem function to remove "&"
'* from verb.
'* 1.0.2 - 03/04/2009 - Script name was PinToStartMenu.vbs. Added
'* /taskbar switch to pin items to taskbar on
'* Win7.
'*
'
'*
'* Declare Variables
'*
Option Explicit
'On Error Resume Next
Dim blnPinned
Dim blnTaskbar
Dim i
Dim intOpMode
Dim objWshShell
Dim objFSO
Dim objShell
Dim strPath
Dim strArguments
Dim strOptionsMessage
' Define constants
Const CONST_ERROR = 0
Const CONST_WSCRIPT = 1
Const CONST_CSCRIPT = 2
Const CONST_SHOW_USAGE = 3
Const CONST_PROCEED = 4
Const CONST_STRING_NOT_FOUND = -1
Const CONST_FOR_READING = 1
Const CONST_FOR_WRITING = 2
Const CONST_FOR_APPENDING = 8
Const CONST_Success = 0
Const CONST_Failure = 1
Const TRISTATE_USE_DEFAULT = -2
Const TRISTATE_TRUE = -1 'Open the file as Unicode.
Const TRISTATE_FALSE
Zeile 9 ruft das skript auf,
Das ist nur der Aufruf zum Skript
da kommt nicht also paasiert nix
guck mal hier
Du benötigt declaire
dann eine Schleife mit absprung
und ein Ende des Skrips.
Das ist wie du hast ein Auto, dass soll fahren, aber ist kein Motor vorhanden .
Beispiel
https://gist.github.com/sirlancelot/368910
File: PinItem.vbs
'* Date: 03/04/2009
'* Version: 1.0.2
'*
'* Main Function: VBScipt to pin an item to the Start Menu or Taskbar
'*
'* Usage: cscript PinItem.vbs /item:<path to exe>
'* [/taskbar] [/?]
'*
'* Copyright (C) 2009 Microsoft Corporation
'*
'* Revisions:
'*
'* 1.0.0 - 04/03/2008 - Created.
'* 1.0.1 - 03/02/2009 - Used Replace in PinItem function to remove "&"
'* from verb.
'* 1.0.2 - 03/04/2009 - Script name was PinToStartMenu.vbs. Added
'* /taskbar switch to pin items to taskbar on
'* Win7.
'*
'
'*
'* Declare Variables
'*
Option Explicit
'On Error Resume Next
Dim blnPinned
Dim blnTaskbar
Dim i
Dim intOpMode
Dim objWshShell
Dim objFSO
Dim objShell
Dim strPath
Dim strArguments
Dim strOptionsMessage
' Define constants
Const CONST_ERROR = 0
Const CONST_WSCRIPT = 1
Const CONST_CSCRIPT = 2
Const CONST_SHOW_USAGE = 3
Const CONST_PROCEED = 4
Const CONST_STRING_NOT_FOUND = -1
Const CONST_FOR_READING = 1
Const CONST_FOR_WRITING = 2
Const CONST_FOR_APPENDING = 8
Const CONST_Success = 0
Const CONST_Failure = 1
Const TRISTATE_USE_DEFAULT = -2
Const TRISTATE_TRUE = -1 'Open the file as Unicode.
Const TRISTATE_FALSE
ok war nur gedanke
Da mal posten? http://www.visualbasicscript.com/
Da mal posten? http://www.visualbasicscript.com/