How to detect logged on users in Task Sequences

It’s easy to deploy a package to workstations and reboot when no users are logged on. All you need to do is just set “Only when no user is logged on” on program properties. But SCCM TS don’t have such “luxury”, basically because Task Sequences are used for OS deployment, means no users or they already were kicked out.

One of TSes I use to upgrade drivers. Complexity of conditions (registry settings, file versions, type of devices, users are logged or not etc) makes it difficult to upgrade drives in “classical way”: create collections for for each of possible combinations, two-three programs and numerous adverts.  Instead I have just one deployment of single TS and able reuse my staging collections I use for patch management.

A simple WMI query helps to detect logged users:
SELECT * FROM Win32_LogonSession WHERE LogonType =2

And another one for device type:
SELECT * FROM Win32_OperatingSystem where ProductType = 1

ProductType is 1 for worstations, 2 for Domain Controllers, and 3 is for member servers.

This PowerShell script gives you all info about logged users if any
Get-WmiObject -Class Win32_LogonSession | ? {$_.LogonType -eq 2} | fl *

And this one for Operating System details
Get-WmiObject -Class Win32_OperatingSystem | fl *

Posted in Uncategorized | Comments Off on How to detect logged on users in Task Sequences

Fixing SCCM Wake on LAN (WOL)

For some reason my SCCM server didn’t wake up HP desktops. WOL was enabled on the desktops. I tried “mc-wol.exe”, a freeware command line tool, and sent a magic package from the router – they both worked fine but not SCCM.

So as the PCs are fine, the problem must be in the server or Hyper-V hosts, where I run the Configuration Manager 2012 server. A simple test by executing mc-wol from the server showed that Hyper-V doesn’t block WOL packages.

I ran WOLSniffer on the server and workstations – it didn’t capture anything. Two settings I had to change to get it worked:

  1. Changed Wake On LAN UPD port to 65535.  You can go to Administration tab, then Site Configuration, Sites, and property of you site.

    image

  2. And second one is transmission method. I had to change it from Unicast to Subnet-direction broadcast.
    image

Note: mc-wol and WOLSniffer  are free tools. Just google or bing them and download. Cannot find? I don’t believe you, but anyway you can get them from here.

 

The next thing how make work is Wakeup Time on Power Management settings for collections. No activities at scheduled time in WOLCMgr.log or WOLMgr.log files so far Sad smile

Posted in Uncategorized | Comments Off on Fixing SCCM Wake on LAN (WOL)

Hello world!

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

Posted in Uncategorized | 1 Comment

System Center Configuration Manager v.Next Beta 1 – now available

It is more user centric now

Download, install and don’t forget to send your feedback

Posted in SCCM | Comments Off on System Center Configuration Manager v.Next Beta 1 – now available

SCCM Backlog fighting

One of the “usual” issues in big SCCM environments is backlogging. Once number of files in an inbox reached critical level SCCM has no chance to keep up unless you stop all data transferring between sites for several days. And it is not because of SCCM only. Try to run “DIR /p” command in folder with million files and you will see it takes 3-5 minutes. Windows Explorer hangs when you try to open such folders especially when files are changing.

I’ve seen 2 million files in replmgr.box inbox and million in distmgr.box. In CompSumm.Box I never had so many files but total size of them was huge — 100GB.

All you changes may be delayed for days and even weeks or changes already happened on client side (package installed, new inventory date, etc) but SCCM server doesn’t know that because it has not processed status files yet.

So how you can help SCCM to get back on the trail?

First at all stop all SMS_ $$$$$ services. It may take up to 10-15 minutes to stop SMS_EXECUTIVE service but it’s very important to stop it gracefully. Don’t kill smsexec.exe process!

Then create “DELAY” folder under <SCCM_INSTALL_PATH>\inboxes\replmgr.box\incoming
and move all RPT files from replmgr.box\incoming to delay folder. I’ve noticed RPL files can be processed much quicker than RPT. So RPLs can be left.
Start SMS_SITE_COMPONENT_MANAGER service. In a few seconds it will start SMS_EXECUTIVE and other service if required.
Watch replmgr.box\incoming folder. Once SCCM finished processing old files (number of files in the folder will be dropped) you can start moving back RPT files. It should be done in blocks.

One of my colleague gave me a script for it

@echo off & setlocal EnableDelayedExpansion
set LIM=300
for %%i in (*.rpt) do (
set /A N+=1
move “%%i” “..”
if !N! geq !LIM! (TimeOut 3600 & set /A LIM+=300)
)
:DONE

Save it into DELAY folder. Depends on the backlogging server performance you might increase or decrease the file limit or timeout.
I ran the script on some of servers. The longest run was 8 days but during that time all SCCM infrastructure responded as expected. It was critical for patch management process.

Posted in SCCM | Comments Off on SCCM Backlog fighting

Windows 7 Hotkeys

New Win7 hotkeys (will try to remember)
http://brandonlive.com/2009/01/10/windows-7-beta-hotkey-cheat-sheet/
http://www.mydigitallife.info/2008/12/30/new-keyboard-shortcut-keys-hotkeys-in-windows-7/

All Windows 7 hotkeys

 

 
Ease of Access keyboard shortcuts

The following table contains keyboard shortcuts that can help make your computer easier to use.

Press this key

To do this

Right Shift for eight seconds

Turn Filter Keys on and off

Left Alt+Left Shift+PrtScn (or PrtScn)

Turn High Contrast on or off

Left Alt+Left Shift+Num Lock

Turn Mouse Keys on or off

Shift five times

Turn Sticky Keys on or off

Num Lock for five seconds

Turn Toggle Keys on or off

Windows logo key Picture of Windows logo key +U

Open the Ease of Access Center

 
 

 
General keyboard shortcuts

The following table contains general keyboard shortcuts.

Press this key

To do this

F1

Display Help

Ctrl+C (or Ctrl+Insert)

Copy the selected item

Ctrl+X

Cut the selected item

Ctrl+V (or Shift+Insert)

Paste the selected item

Ctrl+Z

Undo an action

Ctrl+Y

Redo an action

Delete (or Ctrl+D)

Delete the selected item and move it to the Recycle Bin

Shift+Delete

Delete the selected item without moving it to the Recycle Bin first

F2

Rename the selected item

Ctrl+Right Arrow

Move the cursor to the beginning of the next word

Ctrl+Left Arrow

Move the cursor to the beginning of the previous word

Ctrl+Down Arrow

Move the cursor to the beginning of the next paragraph

Ctrl+Up Arrow

Move the cursor to the beginning of the previous paragraph

Ctrl+Shift with an arrow key

Select a block of text

Shift with any arrow key

Select more than one item in a window or on the desktop, or select text within a document

Ctrl with any arrow key+Spacebar

Select multiple individual items in a window or on the desktop

Ctrl+A

Select all items in a document or window

F3

Search for a file or folder

Alt+Enter

Display properties for the selected item

Alt+F4

Close the active item, or exit the active program

Alt+Spacebar

Open the shortcut menu for the active window

Ctrl+F4

Close the active document (in programs that allow you to have multiple documents open simultaneously)

Alt+Tab

Switch between open items

Ctrl+Alt+Tab

Use the arrow keys to switch between open items

Ctrl+Mouse scroll wheel

Change the size of icons on the desktop

Windows logo key Picture of Windows logo key +Tab

Cycle through programs on the taskbar by using Aero Flip 3-D

Ctrl+Windows logo key Picture of Windows logo key +Tab

Use the arrow keys to cycle through programs on the taskbar by using Aero Flip 3-D

Alt+Esc

Cycle through items in the order in which they were opened

F6

Cycle through screen elements in a window or on the desktop

F4

Display the address bar list in Windows Explorer

Shift+F10

Display the shortcut menu for the selected item

Ctrl+Esc

Open the Start menu

Alt+underlined letter

Display the corresponding menu

Alt+underlined letter

Perform the menu command (or other underlined command)

F10

Activate the menu bar in the active program

Right Arrow

Open the next menu to the right, or open a submenu

Left Arrow

Open the next menu to the left, or close a submenu

F5 (or Ctrl+R)

Refresh the active window

Alt+Up Arrow

View the folder one level up in Windows Explorer

Esc

Cancel the current task

Ctrl+Shift+Esc

Open Task Manager

Shift when you insert a CD

Prevent the CD from automatically playing

Left Alt+Shift

Switch the input language when multiple input languages are enabled

Ctrl+Shift

Switch the keyboard layout when multiple keyboard layouts are enabled

Right or Left Ctrl+Shift

Change the reading direction of text in right-to-left reading languages

 

 

 
Dialog box keyboard shortcuts

The following table contains keyboard shortcuts for use in dialog boxes.

Press this key

To do this

Ctrl+Tab

Move forward through tabs

Ctrl+Shift+Tab

Move back through tabs

Tab

Move forward through options

Shift+Tab

Move back through options

Alt+underlined letter

Perform the command (or select the option) that goes with that letter

Enter

Replaces clicking the mouse for many selected commands

Spacebar

Select or clear the check box if the active option is a check box

Arrow keys

Select a button if the active option is a group of option buttons

F1

Display Help

F4

Display the items in the active list

Backspace

Open a folder one level up if a folder is selected in the Save As or Open dialog box

 

 

 
Windows logo key keyboard shortcuts

The following table contains keyboard shortcuts that use the Windows logo key Picture of Windows logo key.

Press this key

To do this

Windows logo key Picture of Windows logo key

Open or close the Start menu.

Windows logo key Picture of Windows logo key +Pause

Display the System Properties dialog box.

Windows logo key Picture of Windows logo key +D

Display the desktop.

Windows logo key Picture of Windows logo key +M

Minimize all windows.

Windows logo key Picture of Windows logo key +Shift+M

Restore minimized windows to the desktop.

Windows logo key Picture of Windows logo key +E

Open Computer.

Windows logo key Picture of Windows logo key +F

Search for a file or folder.

Ctrl+Windows logo key Picture of Windows logo key +F

Search for computers (if you’re on a network).

Windows logo key Picture of Windows logo key +L

Lock your computer or switch users.

Windows logo key Picture of Windows logo key +R

Open the Run dialog box.

Windows logo key Picture of Windows logo key +T

Cycle through programs on the taskbar.

Windows logo key Picture of Windows logo key+number

Start the program pinned to the taskbar in the position indicated by the number. If the program is already running, switch to that program.

Shift+Windows logo key Picture of Windows logo key+number

Start a new instance of the program pinned to the taskbar in the position indicated by the number.

Ctrl+Windows logo key Picture of Windows logo key+number

Switch to the last active window of the program pinned to the taskbar in the position indicated by the number.

Alt+Windows logo key Picture of Windows logo key+number

Open the Jump List for the program pinned to the taskbar in the position indicated by the number.

Windows logo key Picture of Windows logo key +Tab

Cycle through programs on the taskbar by using Aero Flip 3-D.

Ctrl+Windows logo key Picture of Windows logo key +Tab

Use the arrow keys to cycle through programs on the taskbar by using Aero Flip 3-D.

Ctrl+Windows logo key Picture of Windows logo key +B

Switch to the program that displayed a message in the notification area.

Windows logo key Picture of Windows logo key +Spacebar

Preview the desktop.

Windows logo key Picture of Windows logo key +Up Arrow

Maximize the window.

Windows logo key Picture of Windows logo key +Left Arrow

Maximize the window to the left side of the screen.

Windows logo key Picture of Windows logo key +Right Arrow

Maximize the window to the right side of the screen.

Windows logo key Picture of Windows logo key +Down Arrow

Minimize the window.

Windows logo key Picture of Windows logo key +Home

Minimize all but the active window.

Windows logo key Picture of Windows logo key +Shift+Up Arrow

Stretch the window to the top and bottom of the screen.

Windows logo key Picture of Windows logo key +Shift+Left Arrow or Right Arrow

Move a window from one monitor to another.

Windows logo key Picture of Windows logo key +P

Choose a presentation display mode.

Windows logo key Picture of Windows logo key +G

Cycle through gadgets.

Windows logo key Picture of Windows logo key +U

Open Ease of Access Center.

Windows logo key Picture of Windows logo key +X

Open Windows Mobility Center.

 

 

 
Windows Explorer keyboard shortcuts

The following table contains keyboard shortcuts for working with Windows Explorer windows or folders.

Press this key

To do this

Ctrl+N

Open a new window

Ctrl+W

Close the current window

Ctrl+Shift+N

Create a new folder

End

Display the bottom of the active window

Home

Display the top of the active window

F11

Maximize or minimize the active window

Ctrl+Period (.)

Rotate a picture clockwise

Ctrl+Comma (,)

Rotate a picture counter-clockwise

Num Lock+Asterisk (*) on numeric keypad

Display all subfolders under the selected folder

Num Lock+Plus Sign (+) on numeric keypad

Display the contents of the selected folder

Num Lock+Minus Sign (-) on numeric keypad

Collapse the selected folder

Left Arrow

Collapse the current selection (if it’s expanded), or select the parent folder

Alt+Enter

Open the Properties dialog box for the selected item

Alt+P

Display the preview pane

Alt+Left Arrow

View the previous folder

Backspace

View the previous folder

Right Arrow

Display the current selection (if it’s collapsed), or select the first subfolder

Alt+Right Arrow

View the next folder

Alt+Up Arrow

View the parent folder

Ctrl+Shift+E

Display all folders above the selected folder

Ctrl+Mouse scroll wheel

Change the size and appearance of file and folder icons

Alt+D

Select the address bar

Ctrl+E

Select the search box

Ctrl+F

Select the search box

 

 

 
Taskbar keyboard shortcuts

The following table contains keyboard shortcuts for working with items on the taskbar.

Press this key

To do this

Shift+Click on a taskbar button

Open a program or quickly open another instance of a program

Ctrl+Shift+Click on a taskbar button

Open a program as an administrator

Shift+Right-click on a taskbar button

Show the window menu for the program

Shift+Right-click on a grouped taskbar button

Show the window menu for the group

Ctrl+Click on a grouped taskbar button

Cycle through the windows of the group

 

 

 
Magnifier keyboard shortcuts

The following table contains keyboard shortcuts for working with Magnifier.

Press this key

To do this

Windows logo key Picture of Windows logo key+ Plus Sign or Minus Sign

Zoom in or out

Ctrl+Alt+Spacebar

Preview the desktop in full-screen mode

Ctrl+Alt+F

Switch to full-screen mode

Ctrl+Alt+L

Switch to lens mode

Ctrl+Alt+D

Switch to docked mode

Ctrl+Alt+I

Invert colors

Ctrl+Alt+arrow keys

Pan in the direction of the arrow keys

Ctrl+Alt+R

Resize the lens

Windows logo key Picture of Windows logo key+ Esc

Exit Magnifier

 

 

 
Remote Desktop Connection keyboard shortcuts

The following table contains keyboard shortcuts for working with Remote Desktop Connection.

Press this key

To do this

Alt+Page Up

Move between programs from left to right.

Alt+Page Down

Move between programs from right to left.

Alt+Insert

Cycle through programs in the order that they were started in.

Alt+Home

Display the Start menu.

Ctrl+Alt+Break

Switch between a window and full screen.

Ctrl+Alt+End

Display the Windows Security dialog box.

Alt+Delete

Display the system menu.

Ctrl+Alt+Minus Sign (-) on the numeric keypad

Place a copy of the active window, within the client, on the Terminal server clipboard (provides the same functionality as pressing Alt+PrtScn on a local computer).

Ctrl+Alt+Plus Sign (+) on the numeric keypad

Place a copy of the entire client window area on the Terminal server clipboard (provides the same functionality as pressing PrtScn on a local computer).

Ctrl+Alt+Right Arrow

“Tab” out of the Remote Desktop controls to a control in the host program (for example, a button or a text box). Useful when the Remote Desktop controls are embedded in another (host) program.

Ctrl+Alt+Left Arrow

“Tab” out of the Remote Desktop controls to a control in the host program (for example, a button or a text box). Useful when the Remote Desktop controls are embedded in another (host) program.

Note

Note

Ctrl+Alt+Break and Ctrl+Alt+End are available in all Remote Desktop sessions, even when you’ve set up the remote computer to recognize Windows keyboard shortcuts.

 

 
Paint keyboard shortcuts

The following table contains keyboard shortcuts for working with Paint.

Press this key

To do this

Ctrl+N

Create a new picture

Ctrl+O

Open an existing picture

Ctrl+S

Save changes to a picture

F12

Save the picture as a new file

Ctrl+P

Print a picture

Alt+F4

Close a picture and its Paint window

Ctrl+Z

Undo a change

Ctrl+Y

Redo a change

Ctrl+A

Select the entire picture

Ctrl+X

Cut a selection

Ctrl+C

Copy a selection to the Clipboard

Ctrl+V

Paste a selection from the Clipboard

Right Arrow

Move the selection or active shape right by one pixel

Left Arrow

Move the selection or active shape left by one pixel

Down Arrow

Move the selection or active shape down by one pixel

Up Arrow

Move the selection or active shape up by one pixel

Esc

Cancel a selection

Delete

Delete a selection

Ctrl+B

Bold selected text

Ctrl++

Increase the width of a brush, line, or shape outline by one pixel

Ctrl+-

Decrease the width of a brush, line, or shape outline by one pixel

Ctrl+I

Italicize selected text

Ctrl+U

Underline selected text

Ctrl+E

Open the Properties dialog box

Ctrl+W

Open the Resize and Skew dialog box

Ctrl+Page Up

Zoom in

Ctrl+Page Down

Zoom out

F11

View a picture in full-screen mode

Ctrl+R

Show or hide the ruler

Ctrl+G

Show or hide gridlines

F10 or Alt

Display keytips

Shift+F10

Show the current shortcut menu

F1

Open Paint Help

 

 

 
WordPad keyboard shortcuts

The following table contains keyboard shortcuts for working with WordPad.

Press this key

To do this

Ctrl+N

Create a new document

Ctrl+O

Open an existing document

Ctrl+S

Save changes to a document

F12

Save the document as a new file

Ctrl+P

Print a document

Alt+F4

Close WordPad

Ctrl+Z

Undo a change

Ctrl+Y

Redo a change

Ctrl+A

Select the entire document

Ctrl+X

Cut a selection

Ctrl+C

Copy a selection to the Clipboard

Ctrl+V

Paste a selection from the Clipboard

Ctrl+B

Make selected text bold

Ctrl+I

Italicize selected text

Ctrl+U

Underline selected text

Ctrl+=

Make selected text subscript

Ctrl+Shift+=

Make selected text superscript

Ctrl+L

Align text left

Ctrl+E

Align text center

Ctrl+R

Align text right

Ctrl+J

Justify text

Ctrl+1

Set single line spacing

Ctrl+2

Set double line spacing

Ctrl+5

Set line spacing to 1.5

Ctrl+Shift+>

Increase the font size

Ctrl+Shift+<

Decrease the font size

Ctrl+Shift+A

Change characters to all capitals

Ctrl+Shift+L

Change the bullet style

Ctrl+D

Insert a Microsoft Paint drawing

Ctrl+F

Find text in a document

F3

Find the next instance of the text in the Find dialog box

Ctrl+H

Replace text in a document

Ctrl+Left Arrow

Move the cursor one word to the left

Ctrl+Right Arrow

Move the cursor one word to the right

Ctrl+Up Arrow

Move the cursor to the line above

Ctrl+Down Arrow

Move the cursor to the line below

Ctrl+Home

Move to the beginning of the document

Ctrl+End

Move to the end of the document

Ctrl+Page Up

Move up one page

Ctrl+Page Down

Move down one page

Ctrl+Delete

Delete the next word

F10

Display keytips

Shift+F10

Show the current shortcut menu

F1

Open WordPad Help

 

 

 
Calculator keyboard shortcuts

The following table contains keyboard shortcuts for working with Calculator.

Press this key

To do this

Alt+1

Switch to Standard mode

Alt+2

Switch to Scientific mode

Alt+3

Switch to Programmer mode

Alt+4

Switch to Statistics mode

Ctrl+E

Open date calculations

Ctrl+H

Turn calculation history on or off

Ctrl+U

Open unit conversion

Alt+C

Calculate or solve date calculations and worksheets

F1

Open Calculator Help

Ctrl+Q

Press the M- button

Ctrl+P

Press the M+ button

Ctrl+M

Press the MS button

Ctrl+R

Press the MR button

Ctrl+L

Press the MC button

%

Press the % button

F9

Press the +/– button

/

Press the / button

*

Press the * button

+

Press the + button

Press the button

R

Press the 1/× button

@

Press the square root button

0-9

Press the number buttons (0-9)

=

Press the = button

.

Press the . (decimal point) button

Backspace

Press the backspace button

Esc

Press the C button

Del

Press the CE button

Ctrl+Shift+D

Clear the calculation history

F2

Edit the calculation history

Up Arrow key

Navigate up in the calculation history

Down Arrow key

Navigate down in the calculation history

Esc

Cancel editing the calculation history

Enter

Recalculate the calculation history after editing

F3

Select Degrees in Scientific mode

F4

Select Radians in Scientific mode

F5

Select Grads in Scientific mode

I

Press the Inv button in Scientific mode

D

Press the Mod button in Scientific mode

Ctrl+S

Press the sinh button in Scientific mode

Ctrl+O

Press the cosh button in Scientific mode

Ctrl+T

Press the tanh button in Scientific mode

(

Press the ( button in Scientific mode

)

Press the ) button in Scientific mode

N

Press the ln button in Scientific mode

;

Press the Int button in Scientific mode

S

Press the sin button in Scientific mode

O

Press the cos button in Scientific mode

T

Press the tan button in Scientific mode

M

Press the dms button in Scientific mode

P

Press the pi button in Scientific mode

V

Press the F-E button in Scientific mode

X

Press the Exp button in Scientific mode

Q

Press the x^2 button in Scientific mode

Y

Press the x^y button in Scientific mode

#

Press the x^3 button in Scientific mode

L

Press the log button in Scientific mode

!

Press the n! button in Scientific mode

Ctrl+Y

Press the y√x button in Scientific mode

Ctrl+B

Press the 3√x button in Scientific mode

Ctrl+G

Press the 10x button in Scientific mode

F5

Select Hex in Programmer mode

F6

Select Dec in Programmer mode

F7

Select Oct in Programmer mode

F8

Select Bin in Programmer mode

F12

Select Qword in Programmer mode

F2

Select Dword in Programmer mode

F3

Select Word in Programmer mode

F4

Select Byte in Programmer mode

K

Press the RoR button in Programmer mode

J

Press the RoL button in Programmer mode

<

Press the Lsh button in Programmer mode

>

Press the Rsh button in Programmer mode

%

Press the Mod button in Programmer mode

(

Press the ( button in Programmer mode

)

Press the ) button in Programmer mode

|

Press the Or button in Programmer mode

^

Press the Xor button in Programmer mode

~

Press the Not button in Programmer mode

&

Press the And button in Programmer mode

A-F

Press the A-F buttons in Programmer mode

Spacebar

Toggles the bit value in Programmer mode

A

Press the Average button in Statistics mode

Ctrl+A

Press the Average Sq button in Statistics mode

S

Press the Sum button in Statistics mode

Ctrl+S

Press the Sum Sq button in Statistics mode

T

Press the S.D. button in Statistics mode

Ctrl+T

Press the Inv S.D. button in Statistics mode

D

Press the CAD button in Statistics mode

 

 

 
Windows Journal keyboard shortcuts

The following table contains keyboard shortcuts for working with Windows Journal.

Press this key

To do this

Ctrl+N

Start a new note

Ctrl+O

Open a recently used note

Ctrl+S

Save changes to a note

Ctrl+Shift+V

Move a note to a specific folder

Ctrl+P

Print a note

Alt+F4

Close a note and its Journal window

Ctrl+Z

Undo a change

Ctrl+Y

Redo a change

Ctrl+A

Select all items on a page

Ctrl+X

Cut a selection

Ctrl+C

Copy a selection to the Clipboard

Ctrl+V

Paste a selection from the Clipboard

Esc

Cancel a selection

Delete

Delete a selection

Ctrl+F

Start a basic find

Ctrl+G

Go to a page

F5

Refresh find results

F5

Refresh the note list

F6

Toggle between a note list and a note

Ctrl+Shift+C

Display a shortcut menu for column headings in a note list

F11

View a note in full-screen mode

F1

Open Journal Help

 
 

 

 
Windows Help viewer keyboard shortcuts

The following table contains keyboard shortcuts for working with the Help viewer.

Press this key

To do this

Alt+C

Display the Table of Contents

Alt+N

Display the Connection Settings menu

F10

Display the Options menu

Alt+Left Arrow

Move back to the previously viewed topic

Alt+Right Arrow

Move forward to the next (previously viewed) topic

Alt+A

Display the customer support page

Alt+Home

Display the Help and Support home page

Home

Move to the beginning of a topic

End

Move to the end of a topic

Ctrl+F

Search the current topic

Ctrl+P

Print a topic

F3

Move the cursor to the search box

 

source
http://windows.microsoft.com/en-US/Windows7/Keyboard-shortcuts

Posted in Windows 7 | Comments Off on Windows 7 Hotkeys

SCCM. Distribution Points Challenges. Part 2

I have not been blogging about new DP fixing methods for awhile. Last  post was eight month ago. It doesn’t mean I am not doing it anymore or I finally found  silver bullet for package distribution problems. Nope, I’ve been too busy with my SCCM infrastructure. Have found a few new tricks and need to “document” them before I forget.

There are two approaches to fixing distribution problem:  indentify bad Distribution Point or bad package.  I use two custom reports for both methods.

“Number of active distributions per DP”  query

SELECT  s.SiteCode,
SUBSTRING(s.ServerNALPath, CHARINDEX(‘\\’, s.ServerNALPath) + 2, CHARINDEX(‘"]’, s.ServerNALPath) – CHARINDEX(‘\\’, s.ServerNALPath) – 3 ) AS C070,
COUNT(s.sitecode) AS ‘# of Packages’,
  SUM(r.SourceCompressedSize)  / 1024 AS ‘Compressed Size [MB]’ , SUM(r.SourceSize)  / 1024 AS ‘Total Size [MB]’
FROM  v_PackageStatusDistPointsSumm s
JOIN  v_PackageStatusRootSummarizer r ON s.PackageID = r.PackageID
WHERE ( State!=0 AND State!=4)
GROUP BY s.SiteCode, SUBSTRING(s.ServerNALPath, CHARINDEX(‘\\’, s.ServerNALPath) + 2, CHARINDEX(‘"]’, s.ServerNALPath) – CHARINDEX(‘\\’, s.ServerNALPath) – 3 )
HAVING COUNT(s.sitecode)  > 4
ORDER BY COUNT(s.sitecode) DESC, s.SiteCode

 

and “Number of active distributions per package”

SELECT COUNT(*) AS ‘# of Sites’,  s.PackageID,  p.Name,
   rootsum.SourceCompressedSize  / 1024 AS ‘Compressed Size [MB]’ , rootsum.SourceSize  /1024 AS ‘Size [MB]’,
   p.LastRefreshTime, p.SourceDate
FROM  v_PackageStatusDistPointsSumm  s
JOIN v_Package p ON p.PackageID=s.PackageID
JOIN v_PackageStatusRootSummarizer  rootsum ON p.PackageID=rootsum.PackageID
WHERE (s.State!=0 AND s.State <> 4)
GROUP BY s.PackageID,  p.Name, p.LastRefreshTime, p.SourceDate,
rootsum.SourceCompressedSize  / 1024,  rootsum.SourceSize  / 1024
HAVING COUNT(s.sitecode)  > 4
ORDER BY COUNT(*) DESC, s.PackageID

 

I use four packages as a threshold. 

More scripts are coming soon

Posted in SCCM | Comments Off on SCCM. Distribution Points Challenges. Part 2

Windows Installer Error Messages Part 1

Windows Installer errors have an error code of 1000 or greater. The error codes numbered 1000 to 1999 are ship errors and must be authored into the Error table or http://msdn.microsoft.com/en-us/library/aa368554%28VS.85%29.aspx. The error codes numbered greater than 2000 are internal errors and do not have authored strings, but these can occur if the installation package has been incorrectly authored. For a list of reserved error codes, see Error table.

Note  If you are a user experiencing difficulty with your computer either during or after installing or uninstalling an application, you should contact customer support for the software you are trying to install or remove. If you feel you are in need of support for a Microsoft product, please go to our technical support site at support.microsoft.com.

Note  You can search for solutions to many of the messages in the following table in the Microsoft Support Knowledge Base (KB). Go to the Search the Support Knowledge Base page and use the tool provided there to perform a search for a specific Windows Installer error message. Select "Search Product: All Products" to perform a comprehensive search for the message. In the "For:" pane, enter a character string like the following, with quotes enclosing the words Windows Installer, the appropriate Message Code value from the following table, and the keyword "kberrmsg".

"Windows Installer" Message Code kberrmsg

Note  If you are viewing this documentation using the online MSDN library, you can also check the Community Content area at the bottom of this page to see whether any solutions for specific error messages have been contributed.

Developers of installation packages can also test the internal consistency of their packages by using Internal Consistency Evaluators. For more information, see Internal Consistency Evaluators – ICEs.

See also the Error Codes returned by the Windows Installer functions MsiExec.exe and InstMsi.exe.

Message Code Message Remarks

1101

Could not open file stream: [2]. System error: [3]

 

1301

Cannot create the file ‘[2]’. A directory with this name already exists.

 

1302

Please insert the disk: [2]

 

1303

The Installer has insufficient privileges to access this directory: [2].

 

1304

Error writing to File: [2]

 

1305

Error reading from File: [2]; System error code: [3]

 

1306

The file ‘[2]’ is in use. If you can, please close the application that is using the file, then click Retry.

A system restart may be required because a file being updated is also currently in use. For more information, see System Reboots.

1307

There is not enough disk space remaining to install this file: [2]. If you can, free up some disk space, and click Retry, or click Cancel to exit.

 

1308

Source file not found: [2]

 

1309

Error attempting to open the source file: [3]. System error code: [2]

 

1310

Error attempting to create the destination file: [3]. System error code: [2]

 

1311

Could not locate source file cabinet: [2].

 

1312

Cannot create the directory ‘[2]’. A file with this name already exists. Please rename or remove the file and click Retry, or click Cancel to exit.

 

1313

The volume [2] is currently unavailable. Please select another.

 

1314

The specified path ‘[2]’ is unavailable.

 

1315

Unable to write to the specified folder: [2].

 

1316

A network error occurred while attempting to read from the file: [2]

 

1317

An error occurred while attempting to create the directory: [2]

 

1318

A network error occurred while attempting to create the directory: [2]

 

1319

A network error occurred while attempting to open the source file cabinet: [2].

 

1320

The specified path is too long: ‘[2]’

 

1321

The Installer has insufficient privileges to modify this file: [2].

 

1322

A portion of the folder path ‘[2]’ is invalid. It is either empty or exceeds the length allowed by the system.

 

1323

The folder path ‘[2]’ contains words that are not valid in folder paths.

 

1324

The folder path ‘[2]’ contains an invalid character.

 

1325

‘[2]’ is not a valid short file name.

 

1326

Error getting file security: [3] GetLastError: [2]

 

1327

Invalid Drive: [2]

 

1328

Error applying patch to file [2]. It has probably been updated by other means, and can no longer be modified by this patch. For more information, contact your patch vendor. System Error: [3]

 

1329

A file that is required cannot be installed because the cabinet file [2] is not digitally signed. This may indicate that the cabinet file is corrupt.

 

1330

A file that is required cannot be installed because the cabinet file [2] has an invalid digital signature. This may indicate that the cabinet file is corrupt.{ Error [3] was returned by WinVerifyTrust.}

 

1331

Failed to correctly copy [2] file: CRC error.

 

1332

Failed to correctly move [2] file: CRC error.

 

1333

Failed to correctly patch [2] file: CRC error.

 

1334

The file ‘[2]’ cannot be installed because the file cannot be found in cabinet file ‘[3]’. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package.

 

1335

The cabinet file ‘[2]’ required for this installation is corrupt and cannot be used. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package.

 

1336

There was an error creating a temporary file that is needed to complete this installation. Folder: [3]. System error code: [2]

 

1401

Could not create key: [2]. System error [3].

 

1402

Could not open key: [2]. System error [3].

 

1403

Could not delete value [2] from key [3]. System error [4].

 

1404

Could not delete key [2]. System error [3].

 

1405

Could not read value [2] from key [3]. System error [4].

 

1406

Could not write value [2] to key [3]. System error [4].

 

1407

Could not get value names for key [2]. System error [3].

 

1408

Could not get sub key names for key [2]. System error [3].

 

1409

Could not read security information for key [2]. System error [3].

 

1410

Could not increase the available registry space. [2] KB of free registry space is required for the installation of this application.

 

1500

Another installation is in progress. You must complete that installation before continuing this one.

Test packages in high-traffic environments where users request the installation of many applications. For more information, see _MSIExecute Mutex.

1501

Error accessing secured data. Please make sure the Windows Installer is configured properly and try the install again.

 

1502

User ‘[2]’ has previously initiated an install for product ‘[3]’. That user will need to run that install again before they can use that product. Your current install will now continue.

Test packages in high-traffic environments where users request the installation of many applications. For more information, see _MSIExecute Mutex.

1503

User ‘[2]’ has previously initiated an install for product ‘[3]’. That user will need to run that install again before they can use that product.

Test packages in high-traffic environments where users request the installation of many applications. For more information, see _MSIExecute Mutex.

1601

Out of disk space — Volume: ‘[2]’; required space: [3] KB; available space: [4] KB

Ensure that the custom action costs do not exceed available space.

1602

Are you sure you want to cancel?

 

1603

The file [2][3] is being held in use by the following process: Name: [4], Id: [5], Window Title: ‘[6]’.

A system restart may be required because the file being updated is also currently in use. Users may be given the opportunity to avoid some system restarts by using the FilesInUse Dialog or the MsiRMFilesInUse Dialog. For more information, see System Reboots and Logging of Reboot Requests.

1604

The product ‘[2]’ is already installed, and has prevented the installation of this product.

 

1605

Out of disk space — Volume: ‘[2]’; required space: [3] KB; available space: [4] KB. If rollback is disabled, enough space is available. Click Cancel to quit, Retry to check available disk space again, or Ignore to continue without rollback.

Ensure that the custom action costs do not exceed the available space.

1606

Could not access location [2].

Do not list directories in the Directory table which are not used by the installation.

Rarely, this message is due to the issue discussed by KB886549.

1607

The following applications should be closed before continuing the install:

A system restart may be required because a file that is being updated is also currently in use. Users may be given the opportunity to avoid some system restarts by selecting to close some applications. For more information, see System Reboots.

1608

Could not find any previously installed compliant products on the machine for installing this product

No file listed in the CCPSearch table can be found on the user’s computer.

1609

An error occurred while applying security settings. [2] is not a valid user or group. This could be a problem with the package, or a problem connecting to a domain controller on the network. Check your network connection and click Retry, or Cancel to end the install. Unable to locate the user’s SID, system error [3]

 

1610

The setup must update files or services that cannot be updated while the system is running. If you choose to continue, a reboot will be required to complete the setup.

Available in Windows Installer version 4.0.

1611

The setup was unable to automatically close all requested applications. Please ensure that the applications holding files in use are closed before continuing with the installation.

Available in Windows Installer version 4.0.

1651

Admin user failed to apply patch for a per-user managed or a per-machine application which is in advertise state.

Available in Windows Installer version 3.0.

1701

[2] is not a valid entry for a product ID.

 

1702

Configuring [2] cannot be completed until you restart your system. To restart now and resume configuration click Yes, or click No to stop this configuration.

A scheduled system restart message. For more information, see System Reboots and ScheduleReboot Action. This message may be customized using the Error table.

1703

For the configuration changes made to [2] to take effect you must restart your system. To restart now click Yes, or click No if you plan to manually restart at a later time.

The scheduled system restart message when no other users are logged on the computer. For more information, see System Reboots and ScheduleReboot Action. This message may be customized using the Error table.

1704

An install for [2] is currently suspended. You must undo the changes made by that install to continue. Do you want to undo those changes?

 

1705

A previous install for this product is in progress. You must undo the changes made by that install to continue. Do you want to undo those changes?

 

1706

No valid source could be found for product [2].

 

1707

Installation operation completed successfully.

 

1708

Installation operation failed.

 

1709

Product: [2] — [3]

 

1710

You may either restore your computer to its previous state or continue the install later. Would you like to restore?

 

1711

An error occurred while writing installation information to disk. Check to make sure enough disk space is available, and click Retry, or Cancel to end the install.

 

1712

One or more of the files required to restore your computer to its previous state could not be found. Restoration will not be possible.

 

1713

[2] cannot install one of its required products. Contact your technical support group. System Error: [3].

 

1714

The older version of [2] cannot be removed. Contact your technical support group. System Error [3].

 

1715

Installed [2].

 

1716

Configured [2].

 

1717

Removed [2].

 

1718

File [2] was rejected by digital signature policy.

A very large installation may cause the operating system to run out of memory.

1719

Windows Installer service could not be accessed. Contact your support personnel to verify that it is properly registered and enabled.

 

1720

There is a problem with this Windows Installer package. A script required for this install to complete could not be run. Contact your support personnel or package vendor. Custom action [2] script error [3], [4]: [5] Line [6], Column [7], [8]

 

1721

There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor. Action: [2], location: [3], command: [4]

 

1722

There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action [2], location: [3], command: [4]

 

1723

There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor. Action [2], entry: [3], library: [4]

Ensure that the functions used by custom actions are actually exported. For more information about custom actions based upon a DLL, see Dynamic-Link Libraries.

1724

Removal completed successfully.

 

1725

Removal failed.

 

1726

Advertisement completed successfully.

 

1727

Advertisement failed.

 

1728

Configuration completed successfully.

 

1729

Configuration failed.

 

1730

You must be an Administrator to remove this application. To remove this application, you can log on as an administrator, or contact your technical support group for assistance.

 

1731

The source installation package for the product [2] is out of sync with the client package. Try the installation again using a valid copy of the installation package ‘[3]’.

Available beginning with Windows Installer for Windows Server 2003.

1732

In order to complete the installation of [2], you must restart the computer. Other users are currently logged on to this computer, and restarting may cause them to lose their work. Do you want to restart now?

The scheduled system restart message when other users are logged on the computer. For more information, see System Reboots and ScheduleReboot Action. This message may be customized using the Error table.

Available beginning with Windows Installer for Windows Server 2003.

1801

The path [2] is not valid

 

1802

Out of memory

 

1803

There is no disk in drive [2]. Please, insert one and click Retry, or click Cancel to go back to the previously selected volume.

 

1804

There is no disk in drive [2]. Please, insert one and click Retry, or click Cancel to return to the browse dialog and select a different volume.

 

1805

The path [2] does not exist

 

1806

You have insufficient privileges to read this folder.

 

1807

A valid destination folder for the install could not be determined.

 

1901

Error attempting to read from the source install database: [2]

 

1902

Scheduling restart operation: Renaming file [2] to [3]. Must restart to complete operation.

An file being updated by the installation is currently in use. Windows Installer renames the file to update it and removes the old version at the next restart of the system.

1903

Scheduling restart operation: Deleting file [2]. Must restart to complete operation.

A system restart may be required because the file that is being updated is also currently in use. Users may be given the opportunity to avoid some system restarts by using the FilesInUse Dialog or MsiRMFilesInUse Dialog. For more information, see System Reboots and Logging of Reboot Requests.

1904

Module [2] failed to register. HRESULT [3].

 

1905

Module [2] failed to unregister. HRESULT [3].

 

1906

Failed to cache package [2]. Error: [3]

 

1907

Could not register font [2]. Verify that you have sufficient permissions to install fonts, and that the system supports this font.

 

1908

Could not unregister font [2]. Verify that you have sufficient permissions to remove fonts.

 

1909

Could not create shortcut [2]. Verify that the destination folder exists and that you can access it.

 

1910

Could not remove shortcut [2]. Verify that the shortcut file exists and that you can access it.

 

1911

Could not register type library for file [2]. Contact your support personnel.

Error loading a type library or DLL.

1912

Could not unregister type library for file [2]. Contact your support personnel.

Error loading a type library or DLL.

1913

Could not update the .ini file [2][3]. Verify that the file exists and that you can access it.

 

1914

Could not schedule file [2] to replace file [3] on restart. Verify that you have write permissions to file [3].

 

1915

Error removing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.

 

1916

Error installing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.

 

1917

Error removing ODBC driver: [4], ODBC error [2]: [3]. Verify that you have sufficient privileges to remove ODBC drivers.

 

1918

Error installing ODBC driver: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.

 

1919

Error configuring ODBC data source: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.

 

1920

Service ‘[2]’ ([3]) failed to start. Verify that you have sufficient privileges to start system services.

 

1921

Service ‘[2]’ ([3]) could not be stopped. Verify that you have sufficient privileges to stop system services.

 

1922

Service ‘[2]’ ([3]) could not be deleted. Verify that you have sufficient privileges to remove system services.

 

1923

Service ‘[2]’ ([3]) could not be installed. Verify that you have sufficient privileges to install system services.

 

1924

Could not update environment variable ‘[2]’. Verify that you have sufficient privileges to modify environment variables.

 

1925

You do not have sufficient privileges to complete this installation for all users of the machine. Log on as administrator and then retry this installation.

 

1926

Could not set file security for file ‘[3]’. Error: [2]. Verify that you have sufficient privileges to modify the security permissions for this file.

 

1927

The installation requires COM+ Services to be installed.

 

1928

The installation failed to install the COM+ Application.

 

1929

The installation failed to remove the COM+ Application.

 

1930

The description for service ‘[2]’ ([3]) could not be changed.

 

1931

The Windows Installer service cannot update the system file [2] because the file is protected by Windows. You may need to update your operating system for this program to work correctly. Package version: [3], OS Protected version: [4]

Windows Installer protects critical system files. For more information, see Using Windows Installer and Windows Resource Protection. For Windows Me, see the InstallSFPCatalogFile action, the FileSFPCatalog table, and the SFPCatalog table.

1932

The Windows Installer service cannot update the protected Windows file [2]. Package version: [3], OS Protected version: [4], SFP Error: [5]

Windows Installer protects critical system files. For more information, see Using Windows Installer and Windows Resource Protection. For Windows Me, see the InstallSFPCatalogFile action, the FileSFPCatalog table, and the SFPCatalog table.

1933

The Windows Installer service cannot update one or more protected Windows files. SFP Error: [2]. List of protected files:\r\n[3]

Windows Installer protects critical system files. For more information, see Using Windows Installer and Windows Resource Protection. For Windows Me, see the InstallSFPCatalogFile action, the FileSFPCatalog table, and the SFPCatalog table.

1934

User installations are disabled through policy on the machine.

 

1935

An error occurred during the installation of assembly component [2]. HRESULT: [3]. {{assembly interface: [4], function: [5], assembly name: [6]}}

For more information, see Assemblies.

Help and Support may have published a KB article that discusses the installation of this assembly. Go to the Search the Support Knowledge Base page and search for articles that discuss this Windows Installer error message.

1935

An error occurred during the installation of assembly ‘[6]’. Please refer to Help and Support for more information. HRESULT: [3]. {{assembly interface: [4], function: [5], component: [2]}}

For more information, see Assemblies.

Help and Support may have published a KB article that discusses the installation of this assembly. Go to the Search the Support Knowledge Base page and search for articles that discuss this Windows Installer error message.

Available beginning with Windows Installer for Windows Server 2003.

1936

An error occurred during the installation of assembly ‘[6]’. The assembly is not strongly named or is not signed with the minimal key length. HRESULT: [3]. {{assembly interface: [4], function: [5], component: [2]}}

For more information, see Assemblies.

Help and Support may have published a KB article that discusses the installation of this assembly. Go to the Search the Support Knowledge Base page and search for articles that discuss this Windows Installer error message.

Available beginning with Windows Installer for Windows Server 2003.

1937

An error occurred during the installation of assembly ‘[6]’. The signature or catalog could not be verified or is not valid. HRESULT: [3]. {{assembly interface: [4], function: [5], component: [2]}}

For more information, see Assemblies.

Help and Support may have published a KB article that discusses the installation of this assembly. Go to the Search the Support Knowledge Base page and search for articles that discuss this Windows Installer error message.

Available beginning with Windows Installer for Windows Server 2003.

1938

An error occurred during the installation of assembly ‘[6]’. One or more modules of the assembly could not be found. HRESULT: [3]. {{assembly interface: [4], function: [5], component: [2]}}

For more information, see Assemblies.

Help and Support may have published a KB article that discusses the installation of this assembly. Go to the Search the Support Knowledge Base page and search for articles that discuss this Windows Installer error message.

Available beginning with Windows Installer for Windows Server 2003.

1939

Service ‘[2]’ ([3]) could not be configured. This could be a problem with the package or your permissions. Verify that you have sufficient privileges to configure system services.

For information, seeUsing Services Configuration.

Available beginning with Windows Installer 5.0 for Windows 7 and Windows Server 2008 R2.

1940

Service ‘[2]’ ([3]) could not be configured. Configuring services is supported only on Windows Vista/Server 2008 and above.

For information, seeUsing Services Configuration.

Available beginning with Windows Installer 5.0 for Windows 7 and Windows Server 2008 R2.

1941

Both LockPermissions and MsiLockPermissionsEx tables were found in the package. Only one of them should be present. This is a problem with the package.

A package cannot contain both the MsiLockPermissionsEx Table and the LockPermissions Table.

Available beginning with Windows Installer 5.0 for Windows 7 and Windows Server 2008 R2.

1942

Multiple conditions (‘[2]’ and ‘[3]’)have resolved to true while installing Object [4] (from table [5]). This may be a problem with the package.

Available beginning with Windows Installer 5.0 for Windows 7 and Windows Server 2008 R2.

1943

SDDL string ‘[2]’ for object [3](in table [4]) could not be resolved into a valid Security Descriptor.

See Securing Resources for information on using MsiLockPermissionsEx table.

Available beginning with Windows Installer 5.0 for Windows 7 and Windows Server 2008 R2.

1944

Could not set security for service ‘[3]’. Error: [2]. Verify that you have sufficient privileges to modify the security permissions for this service.

Available beginning with Windows Installer 5.0 for Windows 7 and Windows Server 2008 R2.

1945

You do not have sufficient privileges to complete the re-advertisement of this product. Re-advertisement requires initiation by a local system account calling the MsiAdvertiseScript API

The process calling MsiAdvertiseScript must be running under the LocalSystem account.

Available beginning with Windows Installer 5.0 for Windows 7 and Windows Server 2008 R2.

Message Codes from 2000-3002

Posted in Reference | Comments Off on Windows Installer Error Messages Part 1

Windows Installer Error Messages Part 2

Continue

Message Code Message Remarks

2101

Shortcuts not supported by the operating system.

 

2102

Invalid .ini action: [2]

 

2103

Could not resolve path for shell folder [2].

 

2104

Writing .ini file: [3]: System error: [2].

 

2105

Shortcut Creation [3] Failed. System error: [2].

 

2106

Shortcut Deletion [3] Failed. System error: [2].

 

2107

Error [3] registering type library [2].

 

2108

Error [3] unregistering type library [2].

 

2109

Section missing for .ini action.

 

2110

Key missing for .ini action.

 

2111

Detection of running applications failed, could not get performance data. Registered operation returned : [2].

 

2112

Detection of running applications failed, could not get performance index. Registered operation returned : [2].

 

2113

Detection of running applications failed.

 

2200

Database: [2]. Database object creation failed, mode = [3].

 

2201

Database: [2]. Initialization failed, out of memory.

 

2202

Database: [2]. Data access failed, out of memory.

 

2203

Database: [2]. Cannot open database file. System error [3].

 

2204

Database: [2]. Table already exists: [3].

 

2205

Database: [2]. Table does not exist: [3].

 

2206

Database: [2]. Table could not be dropped: [3].

 

2207

Database: [2]. Intent violation.

 

2208

Database: [2]. Insufficient parameters for Execute.

 

2209

Database: [2]. Cursor in invalid state.

 

2210

Database: [2]. Invalid update data type in column [3].

 

2211

Database: [2]. Could not create database table [3].

 

2212

Database: [2]. Database not in writable state.

 

2213

Database: [2]. Error saving database tables.

 

2214

Database: [2]. Error writing export file: [3].

 

2215

Database: [2]. Cannot open import file: [3].

 

2216

Database: [2]. Import file format error: [3], Line [4].

 

2217

Database: [2]. Wrong state to CreateOutputDatabase [3].

 

2218

Database: [2]. Table name not supplied.

 

2219

Database: [2]. Invalid Installer database format.

 

2220

Database: [2]. Invalid row/field data.

 

2221

Database: [2]. Code page conflict in import file: [3].

 

2222

Database: [2]. Transform or merge code page [3] differs from database code page [4].

 

2223

Database: [2]. Databases are the same. No transform generated.

 

2224

Database: [2]. GenerateTransform: Database corrupt. Table: [3].

 

2225

Database: [2]. Transform: Cannot transform a temporary table. Table: [3].

 

2226

Database: [2]. Transform failed.

 

2227

Database: [2]. Invalid identifier ‘[3]’ in SQL query: [4].

 

2228

Database: [2]. Unknown table ‘[3]’ in SQL query: [4].

 

2229

Database: [2]. Could not load table ‘[3]’ in SQL query: [4].

 

2230

Database: [2]. Repeated table ‘[3]’ in SQL query: [4].

 

2231

Database: [2]. Missing ‘)’ in SQL query: [3].

 

2232

Database: [2]. Unexpected token ‘[3]’ in SQL query: [4].

 

2233

Database: [2]. No columns in SELECT clause in SQL query: [3].

 

2234

Database: [2]. No columns in ORDER BY clause in SQL query: [3].

 

2235

Database: [2]. Column ‘[3]’ not present or ambiguous in SQL query: [4].

 

2236

Database: [2]. Invalid operator ‘[3]’ in SQL query: [4].

 

2237

Database: [2]. Invalid or missing query string: [3].

 

2238

Database: [2]. Missing FROM clause in SQL query: [3].

 

2239

Database: [2]. Insufficient values in INSERT SQL statement.

 

2240

Database: [2]. Missing update columns in UPDATE SQL statement.

 

2241

Database: [2]. Missing insert columns in INSERT SQL statement.

 

2242

Database: [2]. Column ‘[3]’ repeated.

 

2243

Database: [2]. No primary columns defined for table creation.

 

2244

Database: [2]. Invalid type specifier ‘[3]’ in SQL query [4].

 

2245

IStorage::Stat failed with error [3].

 

2246

Database: [2]. Invalid Installer transform format.

 

2247

Database: [2] Transform stream read/write failure.

 

2248

Database: [2] GenerateTransform/Merge: Column type in base table does not match reference table. Table: [3] Col #: [4].

 

2249

Database: [2] GenerateTransform: More columns in base table than in reference table. Table: [3].

 

2250

Database: [2] Transform: Cannot add existing row. Table: [3].

 

2251

Database: [2] Transform: Cannot delete row that does not exist. Table: [3].

 

2252

Database: [2] Transform: Cannot add existing table. Table: [3].

 

2253

Database: [2] Transform: Cannot delete table that does not exist. Table: [3].

 

2254

Database: [2] Transform: Cannot update row that does not exist. Table: [3].

 

2255

Database: [2] Transform: Column with this name already exists. Table: [3] Col: [4].

 

2256

Database: [2] GenerateTransform/Merge: Number of primary keys in base table does not match reference table. Table: [3].

 

2257

Database: [2]. Intent to modify read only table: [3].

 

2258

Database: [2]. Type mismatch in parameter: [3].

 

2259

Database: [2] Table(s) Update failed

Queries must adhere to the restricted Windows Installer SQL syntax.

2260

Storage CopyTo failed. System error: [3].

 

2261

Could not remove stream [2]. System error: [3].

 

2262

Stream does not exist: [2]. System error: [3].

 

2263

Could not open stream [2]. System error: [3].

 

2264

Could not remove stream [2]. System error: [3].

 

2265

Could not commit storage. System error: [3].

 

2266

Could not rollback storage. System error: [3].

 

2267

Could not delete storage [2]. System error: [3].

 

2268

Database: [2]. Merge: There were merge conflicts reported in [3] tables.

 

2269

Database: [2]. Merge: The column count differed in the ‘[3]’ table of the two databases.

 

2270

Database: [2]. GenerateTransform/Merge: Column name in base table does not match reference table. Table: [3] Col #: [4].

 

2271

SummaryInformation write for transform failed.

 

2272

Database: [2]. MergeDatabase will not write any changes because the database is open read-only.

 

2273

Database: [2]. MergeDatabase: A reference to the base database was passed as the reference database.

 

2274

Database: [2]. MergeDatabase: Unable to write errors to Error table. Could be due to a non-nullable column in a predefined Error table.

 

2275

Database: [2]. Specified Modify [3] operation invalid for table joins.

 

2276

Database: [2]. Code page [3] not supported by the system.

 

2277

Database: [2]. Failed to save table [3].

 

2278

Database: [2]. Exceeded number of expressions limit of 32 in WHERE clause of SQL query: [3].

 

2279

Database: [2] Transform: Too many columns in base table [3].

 

2280

Database: [2]. Could not create column [3] for table [4].

 

2281

Could not rename stream [2]. System error: [3].

 

2282

Stream name invalid [2].

 

2302

Patch notify: [2] bytes patched to far.

 

2303

Error getting volume info. GetLastError: [2].

 

2304

Error getting disk free space. GetLastError: [2]. Volume: [3].

 

2305

Error waiting for patch thread. GetLastError: [2].

 

2306

Could not create thread for patch application. GetLastError: [2].

 

2307

Source file key name is null.

 

2308

Destination file name is null.

 

2309

Attempting to patch file [2] when patch already in progress.

 

2310

Attempting to continue patch when no patch is in progress.

 

2315

Missing path separator: [2].

 

2318

File does not exist: [2].

 

2319

Error setting file attribute: [3] GetLastError: [2].

 

2320

File not writable: [2].

 

2321

Error creating file: [2].

 

2322

User canceled.

 

2323

Invalid file attribute.

 

2324

Could not open file: [3] GetLastError: [2].

 

2325

Could not get file time for file: [3] GetLastError: [2].

 

2326

Error in FileToDosDateTime.

 

2327

Could not remove directory: [3] GetLastError: [2].

 

2328

Error getting file version info for file: [2].

 

2329

Error deleting file: [3]. GetLastError: [2].

 

2330

Error getting file attributes: [3]. GetLastError: [2].

 

2331

Error loading library [2] or finding entry point [3].

 

2332

Error getting file attributes. GetLastError: [2].

 

2333

Error setting file attributes. GetLastError: [2].

 

2334

Error converting file time to local time for file: [3]. GetLastError: [2].

 

2335

Path: [2] is not a parent of [3].

 

2336

Error creating temp file on path: [3]. GetLastError: [2].

 

2337

Could not close file: [3] GetLastError: [2].

 

2338

Could not update resource for file: [3] GetLastError: [2].

 

2339

Could not set file time for file: [3] GetLastError: [2].

 

2340

Could not update resource for file: [3], Missing resource.

 

2341

Could not update resource for file: [3], Resource too large.

 

2342

Could not update resource for file: [3] GetLastError: [2].

 

2343

Specified path is empty.

 

2344

Could not find required file IMAGEHLP.DLL to validate file:[2].

 

2345

[2]: File does not contain a valid checksum value.

 

2347

User ignore.

 

2348

Error attempting to read from cabinet stream.

 

2349

Copy resumed with different info.

 

2350

FDI server error

 

2351

File key ‘[2]’ not found in cabinet ‘[3]’. The installation cannot continue.

 

2352

Could not initialize cabinet file server. The required file ‘CABINET.DLL’ may be missing.

 

2353

Not a cabinet.

 

2354

Cannot handle cabinet.

 

2355

Corrupt cabinet.

 

2356

Could not locate cabinet in stream: [2].

When troubleshooting embedded streams, you may use WiStream.vbs to list the streams and use Msidb.exe to export the streams.

2357

Cannot set attributes.

 

2358

Error determining whether file is in-use: [3]. GetLastError: [2].

 

2359

Unable to create the target file – file may be in use.

 

2360

Progress tick.

 

2361

Need next cabinet.

 

2362

Folder not found: [2].

 

2363

Could not enumerate subfolders for folder: [2].

 

2364

Bad enumeration constant in CreateCopier call.

 

2365

Could not BindImage exe file [2].

 

2366

User failure.

 

2367

User abort.

 

2368

Failed to get network resource information. Error [2], network path [3]. Extended error: network provider [5], error code [4], error description [6].

 

2370

Invalid CRC checksum value for [2] file.{ Its header says [3] for checksum, its computed value is [4].}

 

2371

Could not apply patch to file [2]. GetLastError: [3].

 

2372

Patch file [2] is corrupt or of an invalid format. Attempting to patch file [3]. GetLastError: [4].

 

2373

File [2] is not a valid patch file.

 

2374

File [2] is not a valid destination file for patch file [3].

 

2375

Unknown patching error: [2].

 

2376

Cabinet not found.

 

2379

Error opening file for read: [3] GetLastError: [2].

 

2380

Error opening file for write: [3]. GetLastError: [2].

 

2381

Directory does not exist: [2].

 

2382

Drive not ready: [2].

 

2401

64-bit registry operation attempted on 32-bit operating system for key [2].

 

2402

Out of memory.

 

2501

Could not create rollback script enumerator.

 

2502

Called InstallFinalize when no install in progress.

 

2503

Called RunScript when not marked in progress.

 

2601

Invalid value for property [2]: ‘[3]’

 

2602

The [2] table entry ‘[3]’ has no associated entry in the Media table.

 

2603

Duplicate table name [2].

 

2604

[2] Property undefined.

 

2605

Could not find server [2] in [3] or [4].

 

2606

Value of property [2] is not a valid full path: ‘[3]’.

 

2607

Media table not found or empty (required for installation of files).

 

2608

Could not create security descriptor for object. Error: ‘[2]’.

 

2609

Attempt to migrate product settings before initialization.

 

2611

The file [2] is marked as compressed, but the associated media entry does not specify a cabinet.

 

2612

Stream not found in ‘[2]’ column. Primary key: ‘[3]’.

 

2613

RemoveExistingProducts action sequenced incorrectly.

 

2614

Could not access IStorage object from installation package.

 

2615

Skipped unregistration of Module [2] due to source resolution failure.

 

2616

Companion file [2] parent missing.

 

2617

Shared component [2] not found in Component table.

 

2618

Isolated application component [2] not found in Component table.

 

2619

Isolated components [2], [3] not part of same feature.

 

2620

Key file of isolated application component [2] not in File table.

 

2621

Resource DLL or Resource ID information for shortcut [2] set incorrectly.

Available with Windows Installer version 4.0.

2701

The depth of a feature exceeds the acceptable tree depth of [2] levels.

The maximum depth of any feature is 16. This error is returned if a feature that exceeds the maximum depth exists.

2702

A Feature table record ([2]) references a non-existent parent in the Attributes field.

 

2703

Property name for root source path not defined: [2]

 

2704

Root directory property undefined: [2]

 

2705

Invalid table: [2]; Could not be linked as tree.

 

2706

Source paths not created. No path exists for entry [2] in Directory table.

 

2707

Target paths not created. No path exists for entry [2] in Directory table.

 

2708

No entries found in the file table.

 

2709

The specified Component name (‘[2]’) not found in Component table.

 

2710

The requested ‘Select’ state is illegal for this Component.

 

2711

The specified Feature name (‘[2]’) not found in Feature table.

 

2712

Invalid return from modeless dialog: [3], in action [2].

 

2713

Null value in a non-nullable column (‘[2]’ in ‘[3]’ column of the ‘[4]’ table.

 

2714

Invalid value for default folder name: [2].

 

2715

The specified File key (‘[2]’) not found in the File table.

 

2716

Could not create a random subcomponent name for component ‘[2]’.

May occur if the first 40 characters of two or more component names are identical. Ensure that the first 40 characters of component names are unique to the component.

2717

Bad action condition or error calling custom action ‘[2]’.

 

2718

Missing package name for product code ‘[2]’.

 

2719

Neither UNC nor drive letter path found in source ‘[2]’.

 

2720

Error opening source list key. Error: ‘[2]’

 

2721

Custom action [2] not found in Binary table stream.

 

2722

Custom action [2] not found in File table.

 

2723

Custom action [2] specifies unsupported type.

 

2724

The volume label ‘[2]’ on the media you’re running from does not match the label ‘[3]’ given in the Media table. This is allowed only if you have only 1 entry in your Media table.

 

2725

Invalid database tables

 

2726

Action not found: [2].

 

2727

The directory entry ‘[2]’ does not exist in the Directory table.

 

2728

Table definition error: [2]

 

2729

Install engine not initialized.

 

2730

Bad value in database. Table: ‘[2]’; Primary key: ‘[3]’; Column: ‘[4]’

 

2731

Selection Manager not initialized.

The selection manager is responsible for determining component and feature states. It is initialized during the costing actions ( CostInitialize action, FileCost action, and CostFinalize action.) A standard action or custom action made a call to a function requiring the selection manager before the initialization of the selection manager. This action should be sequenced after the costing actions.

2732

Directory Manager not initialized.

The directory manager is responsible for determining the target and source paths. It is initialized during the costing actions (CostInitialize action, FileCost action, and CostFinalize action). A standard action or custom action made a call to a function requiring the directory manager before the initialization of the directory manager. This action should be sequenced after the costing actions.

2733

Bad foreign key (‘[2]’) in ‘[3]’ column of the ‘[4]’ table.

 

2734

Invalid reinstall mode character.

 

2735

Custom action ‘[2]’ has caused an unhandled exception and has been stopped. This may be the result of an internal error in the custom action, such as an access violation.

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2736

Generation of custom action temp file failed: [2].

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2737

Could not access custom action [2], entry [3], library [4]

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2738

Could not access VBScript run time for custom action [2].

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2739

Could not access JScript run time for custom action [2].

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2740

Custom action [2] script error [3], [4]: [5] Line [6], Column [7], [8].

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2741

Configuration information for product [2] is corrupt. Invalid info: [2].

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2742

Marshaling to Server failed: [2].

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2743

Could not execute custom action [2], location: [3], command: [4].

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2744

EXE failed called by custom action [2], location: [3], command: [4].

This error is caused by a custom action that is based on Dynamic-Link Libraries. When trouble-shooting the DLL you may need to use one or more of the tools described in KB198038.

2745

Transform [2] invalid for package [3]. Expected language [4], found language [5].

The language ID that is specified by the ProductLanguage property must be contained in the Template Summary property. Perform package validation and check for ICE80.

2746

Transform [2] invalid for package [3]. Expected product [4], found product [5].

 

2747

Transform [2] invalid for package [3]. Expected product version < [4], found product version [5].

 

2748

Transform [2] invalid for package [3]. Expected product version <= [4], found product version [5].

 

2749

Transform [2] invalid for package [3]. Expected product version == [4], found product version [5].

 

2750

Transform [2] invalid for package [3]. Expected product version >= [4], found product version [5].

 

2751

Transform [2] invalid for package [3]. Expected product version > [4], found product version [5].

 

2752

Could not open transform [2] stored as child storage of package [4].

 

2753

The File ‘[2]’ is not marked for installation.

 

2754

The File ‘[2]’ is not a valid patch file.

 

2755

Server returned unexpected error [2] attempting to install package [3].

 

2756

The property ‘[2]’ was used as a directory property in one or more tables, but no value was ever assigned.

 

2757

Could not create summary info for transform [2].

 

2758

Transform [2] does not contain an MSI version.

 

2759

Transform [2] version [3] incompatible with engine; Min: [4], Max: [5].

 

2760

Transform [2] invalid for package [3]. Expected upgrade code [4], found [5].

 

2761

Cannot begin transaction. Global mutex not properly initialized.

 

2762

Cannot write script record. Transaction not started.

The InstallExecuteSequence may have been authored incorrectly. Actions that change the system must be sequenced between the InstallInitialize and InstallFinalize actions. Perform package validation and check for ICE77.

2763

Cannot run script. Transaction not started.

 

2765

Assembly name missing from AssemblyName table : Component: [4].

 

2766

The file [2] is an invalid MSI storage file.

 

2767

No more data{ while enumerating [2]}.

 

2768

Transform in patch package is invalid.

 

2769

Custom Action [2] did not close [3] MSIHANDLEs.

The InstallExecuteSequence may have been authored incorrectly. Actions that change the system must be sequenced between the InstallInitialize and InstallFinalize actions. Perform package validation and check for ICE77.

2770

Cached folder [2] not defined in internal cache folder table.

 

2771

Upgrade of feature [2] has a missing component. .

Available beginning with Windows Installer version 3.0.

2772

New upgrade feature [2] must be a leaf feature.

Available beginning with Windows Installer version 3.0.

2801

Unknown Message — Type [2]. No action is taken.

 

2802

No publisher is found for the event [2].

 

2803

Dialog View did not find a record for the dialog [2].

 

2804

On activation of the control [3] on dialog [2] CMsiDialog failed to evaluate the condition [3].

 

2805

 

 

2806

The dialog [2] failed to evaluate the condition [3].

 

2807

The action [2] is not recognized.

 

2808

Default button is ill-defined on dialog [2].

 

2809

On the dialog [2] the next control pointers do not form a cycle. There is a pointer from [3] to [4], but there is no further pointer.

 

2810

On the dialog [2] the next control pointers do not form a cycle. There is a pointer from both [3] and [5] to [4].

 

2811

On dialog [2] control [3] has to take focus, but it is unable to do so.

 

2812

The event [2] is not recognized.

 

2813

The EndDialog event was called with the argument [2], but the dialog has a parent

 

2814

On the dialog [2] the control [3] names a nonexistent control [4] as the next control.

 

2815

ControlCondition table has a row without condition for the dialog [2].

 

2816

The EventMapping table refers to an invalid control [4] on dialog [2] for the event [3].

 

2817

The event [2] failed to set the attribute for the control [4] on dialog [3].

 

2818

In the ControlEvent table EndDialog has an unrecognized argument [2].

 

2819

Control [3] on dialog [2] needs a property linked to it.

 

2820

Attempted to initialize an already initialized handler.

 

2821

Attempted to initialize an already initialized dialog: [2].

 

2822

No other method can be called on dialog [2] until all the controls are added.

 

2823

Attempted to initialize an already initialized control: [3] on dialog [2].

 

2824

The dialog attribute [3] needs a record of at least [2] field(s).

 

2825

The control attribute [3] needs a record of at least [2] field(s).

 

2826

Control [3] on dialog [2] extends beyond the boundaries of the dialog [4] by [5] pixels.

 

2827

The button [4] on the radio button group [3] on dialog [2] extends beyond the boundaries of the group [5] by [6] pixels.

 

2828

Tried to remove control [3] from dialog [2], but the control is not part of the dialog.

 

2829

Attempt to use an uninitialized dialog.

 

2830

Attempt to use an uninitialized control on dialog [2].

 

2831

The control [3] on dialog [2] does not support [5] the attribute [4].

 

2832

The dialog [2] does not support the attribute [3].

 

2833

Control [4] on dialog [3] ignored the message [2].

 

2834

The next pointers on the dialog [2] do not form a single loop.

 

2835

The control [2] was not found on dialog [3].

 

2836

The control [3] on the dialog [2] cannot take focus.

 

2837

The control [3] on dialog [2] wants the winproc to return [4].

 

2838

The item [2] in the selection table has itself as a parent.

 

2839

Setting the property [2] failed.

 

2840

Error dialog name mismatch.

 

2841

No OK button was found on the error dialog.

 

2842

No text field was found on the error dialog.

 

2843

The ErrorString attribute is not supported for standard dialogs.

 

2844

Cannot execute an error dialog if the Errorstring is not set.

 

2845

The total width of the buttons exceeds the size of the error dialog.

 

2846

SetFocus did not find the required control on the error dialog.

 

2847

The control [3] on dialog [2] has both the icon and the bitmap style set.

 

2848

Tried to set control [3] as the default button on dialog [2], but the control does not exist.

 

2849

The control [3] on dialog [2] is of a type, that cannot be integer valued.

 

2850

Unrecognized volume type.

 

2851

The data for the icon [2] is not valid.

 

2852

At least one control has to be added to dialog [2] before it is used.

 

2853

Dialog [2] is a modeless dialog. The execute method should not be called on it.

 

2854

On the dialog [2] the control [3] is designated as first active control, but there is no such control.

 

2855

The radio button group [3] on dialog [2] has fewer than 2 buttons.

 

2856

Creating a second copy of the dialog [2].

 

2857

The directory [2] is mentioned in the selection table but not found.

 

2858

The data for the bitmap [2] is not valid.

 

2859

Test error message.

 

2860

Cancel button is ill-defined on dialog [2].

 

2861

The next pointers for the radio buttons on dialog [2] control [3] do not form a cycle.

 

2862

The attributes for the control [3] on dialog [2] do not define a valid icon size. Setting the size to 16.

 

2863

The control [3] on dialog [2] needs the icon [4] in size [5]x[5], but that size is not available. Loading the first available size.

 

2864

The control [3] on dialog [2] received a browse event, but there is no configurable directory for the present selection. Likely cause: browse button is not authored correctly.

 

2865

Control [3] on billboard [2] extends beyond the boundaries of the billboard [4] by [5] pixels.

 

2866

The dialog [2] is not allowed to return the argument [3].

 

2867

The error dialog property is not set.

 

2868

The error dialog [2] does not have the error style bit set.

 

2869

The dialog [2] has the error style bit set, but is not an error dialog.

 

2870

The help string [4] for control [3] on dialog [2] does not contain the separator character.

 

2871

The [2] table is out of date: [3].

 

2872

The argument of the CheckPath control event on dialog [2] is invalid.

Where "CheckPath" can be the CheckTargetPath, SetTargetPath or the CheckExistingTargetPath control events.

2873

On the dialog [2] the control [3] has an invalid string length limit: [4].

 

2874

Changing the text font to [2] failed.

 

2875

Changing the text color to [2] failed.

 

2876

The control [3] on dialog [2] had to truncate the string: [4].

 

2877

The binary data [2] was not found

 

2878

On the dialog [2] the control [3] has a possible value: [4]. This is an invalid or duplicate value.

 

2879

The control [3] on dialog [2] cannot parse the mask string: [4].

 

2880

Do not perform the remaining control events.

 

2881

CMsiHandler initialization failed.

 

2882

Dialog window class registration failed.

 

2883

CreateNewDialog failed for the dialog [2].

 

2884

Failed to create a window for the dialog [2].

 

2885

Failed to create the control [3] on the dialog [2].

 

2886

Creating the [2] table failed.

 

2887

Creating a cursor to the [2] table failed.

 

2888

Executing the [2] view failed.

 

2889

Creating the window for the control [3] on dialog [2] failed.

 

2890

The handler failed in creating an initialized dialog.

 

2891

Failed to destroy window for dialog [2].

 

2892

[2] is an integer only control, [3] is not a valid integer value.

 

2893

The control [3] on dialog [2] can accept property values that are at most [5] characters long. The value [4] exceeds this limit, and has been truncated.

 

2894

Loading RICHED20.DLL failed. GetLastError() returned: [2].

 

2895

Freeing RICHED20.DLL failed. GetLastError() returned: [2].

 

2896

Executing action [2] failed.

 

2897

Failed to create any [2] font on this system.

 

2898

For [2] textstyle, the system created a ‘[3]’ font, in [4] character set.

 

2899

Failed to create [2] textstyle. GetLastError() returned: [3].

 

2901

Invalid parameter to operation [2]: Parameter [3].

 

2902

Operation [2] called out of sequence.

May indicate that the installation of Win32 assemblies was authored incorrectly. A Win32 side-by-side component may need a key path.

2903

The file [2] is missing.

 

2904

Could not BindImage file [2].

 

2905

Could not read record from script file [2].

 

2906

Missing header in script file [2].

 

2907

Could not create secure security descriptor. Error: [2].

 

2908

Could not register component [2].

 

2909

Could not unregister component [2].

 

2910

Could not determine user’s security ID.

 

2911

Could not remove the folder [2].

 

2912

Could not schedule file [2] for removal on restart.

 

2919

No cabinet specified for compressed file: [2].

 

2920

Source directory not specified for file [2].

 

2924

Script [2] version unsupported. Script version: [3], minimum version: [4], maximum version: [5].

 

2927

ShellFolder id [2] is invalid.

 

2928

Exceeded maximum number of sources. Skipping source ‘[2]’.

 

2929

Could not determine publishing root. Error: [2].

 

2932

Could not create file [2] from script data. Error: [3].

 

2933

Could not initialize rollback script [2].

 

2934

Could not secure transform [2]. Error [3].

 

2935

Could not unsecure transform [2]. Error [3].

 

2936

Could not find transform [2].

 

2937

Windows Installer cannot install a system file protection catalog. Catalog: [2], Error: [3].

Windows Installer protects critical system files. For more information, see Using Windows Installer and Windows Resource Protection. For Windows Me, see the InstallSFPCatalogFile action, the FileSFPCatalog table, and the SFPCatalog table.

2938

Windows Installer cannot retrieve a system file protection catalog from the cache. Catalog: [2], Error: [3].

Windows Installer protects critical system files. For more information, see Using Windows Installer and Windows Resource Protection. For Windows Me, see the InstallSFPCatalogFile action, the FileSFPCatalog table, and the SFPCatalog table.

2939

Windows Installer cannot delete a system file protection catalog from the cache. Catalog: [2], Error: [3].

Windows Installer protects critical system files. For more information, see Using Windows Installer and Windows Resource Protection. For Windows Me, see the InstallSFPCatalogFile action, the FileSFPCatalog table, and the SFPCatalog table.

2940

Directory Manager not supplied for source resolution.

 

2941

Unable to compute the CRC for file [2].

 

2942

BindImage action has not been executed on [2] file.

 

2943

This version of Windows does not support deploying 64-bit packages. The script [2] is for a 64-bit package.

 

2944

GetProductAssignmentType failed.

 

2945

Installation of ComPlus App [2] failed with error [3].

 

3001

The patches in this list contain incorrect sequencing information: [2][3][4][5][6][7][8][9][10][11][12][13][14][15][16].

Available beginning with Windows Installer version 3.0

3002

Patch [2] contains invalid sequencing information.

Available beginning with Windows Installer version 3.0

Source http://msdn.microsoft.com/en-us/library/aa372835(VS.85).aspx
Windows Installer Team Blog: http://blogs.msdn.com/windows_installer_team

Posted in Reference | Comments Off on Windows Installer Error Messages Part 2

Windows Installer Error Codes

These error codes are returned by the Windows Installer functions MsiExec.exe and InstMsi.exe. Note that any error in Winerror.h (such as ERROR_INVALID_DATA, included here) can be returned as well.

Note  The error codes ERROR_SUCCESS, ERROR_SUCCESS_REBOOT_INITIATED, and ERROR_SUCCESS_REBOOT_REQUIRED are indicative of success. If ERROR_SUCCESS_REBOOT_REQUIRED is returned, the installation completed successfully but a reboot is required to complete the installation operation.

See Windows Installer Error Messages for errors returned by the Windows Installer.

Note  If you are a user experiencing difficulty with your computer either during or after installing or uninstalling an application, you should contact customer support for the software you are trying to install or remove. If you feel you are in need of support for a Microsoft product, please go to our technical support site at support.microsoft.com.

Error code Value Description
ERROR_SUCCESS 0 The action completed successfully.
ERROR_INVALID_DATA 13 The data is invalid.
ERROR_INVALID_PARAMETER 87 One of the parameters was invalid.
ERROR_CALL_NOT_IMPLEMENTED 120 This value is returned when a custom action attempts to call a function that cannot be called from custom actions. The function returns the value ERROR_CALL_NOT_IMPLEMENTED. Available beginning with Windows Installer version 3.0.
ERROR_APPHELP_BLOCK 1259 If Windows Installer determines a product may be incompatible with the current operating system, it displays a dialog box informing the user and asking whether to try to install anyway. This error code is returned if the user chooses not to try the installation.
ERROR_INSTALL_SERVICE_FAILURE 1601 The Windows Installer service could not be accessed. Contact your support personnel to verify that the Windows Installer service is properly registered.
ERROR_INSTALL_USEREXIT 1602 The user cancels installation.
ERROR_INSTALL_FAILURE 1603 A fatal error occurred during installation.
ERROR_INSTALL_SUSPEND 1604 Installation suspended, incomplete.
ERROR_UNKNOWN_PRODUCT 1605 This action is only valid for products that are currently installed.
ERROR_UNKNOWN_FEATURE 1606 The feature identifier is not registered.
ERROR_UNKNOWN_COMPONENT 1607 The component identifier is not registered.
ERROR_UNKNOWN_PROPERTY 1608 This is an unknown property.
ERROR_INVALID_HANDLE_STATE 1609 The handle is in an invalid state.
ERROR_BAD_CONFIGURATION 1610 The configuration data for this product is corrupt. Contact your support personnel.
ERROR_INDEX_ABSENT 1611 The component qualifier not present.
ERROR_INSTALL_SOURCE_ABSENT 1612 The installation source for this product is not available. Verify that the source exists and that you can access it.
ERROR_INSTALL_PACKAGE_VERSION 1613 This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
ERROR_PRODUCT_UNINSTALLED 1614 The product is uninstalled.
ERROR_BAD_QUERY_SYNTAX 1615 The SQL query syntax is invalid or unsupported.
ERROR_INVALID_FIELD 1616 The record field does not exist.
ERROR_INSTALL_ALREADY_RUNNING 1618 Another installation is already in progress. Complete that installation before proceeding with this install.

For information about the mutex, see _MSIExecute Mutex.

ERROR_INSTALL_PACKAGE_OPEN_FAILED 1619 This installation package could not be opened. Verify that the package exists and is accessible, or contact the application vendor to verify that this is a valid Windows Installer package.
ERROR_INSTALL_PACKAGE_INVALID 1620 This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.
ERROR_INSTALL_UI_FAILURE 1621 There was an error starting the Windows Installer service user interface. Contact your support personnel.
ERROR_INSTALL_LOG_FAILURE 1622 There was an error opening installation log file. Verify that the specified log file location exists and is writable.
ERROR_INSTALL_LANGUAGE_UNSUPPORTED 1623 This language of this installation package is not supported by your system.
ERROR_INSTALL_TRANSFORM_FAILURE 1624 There was an error applying transforms. Verify that the specified transform paths are valid.
ERROR_INSTALL_PACKAGE_REJECTED 1625 This installation is forbidden by system policy. Contact your system administrator.
ERROR_FUNCTION_NOT_CALLED 1626 The function could not be executed.
ERROR_FUNCTION_FAILED 1627 The function failed during execution.
ERROR_INVALID_TABLE 1628 An invalid or unknown table was specified.
ERROR_DATATYPE_MISMATCH 1629 The data supplied is the wrong type.
ERROR_UNSUPPORTED_TYPE 1630 Data of this type is not supported.
ERROR_CREATE_FAILED 1631 The Windows Installer service failed to start. Contact your support personnel.
ERROR_INSTALL_TEMP_UNWRITABLE 1632 The Temp folder is either full or inaccessible. Verify that the Temp folder exists and that you can write to it.
ERROR_INSTALL_PLATFORM_UNSUPPORTED 1633 This installation package is not supported on this platform. Contact your application vendor.
ERROR_INSTALL_NOTUSED 1634 Component is not used on this machine.
ERROR_PATCH_PACKAGE_OPEN_FAILED 1635 This patch package could not be opened. Verify that the patch package exists and is accessible, or contact the application vendor to verify that this is a valid Windows Installer patch package.
ERROR_PATCH_PACKAGE_INVALID 1636 This patch package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer patch package.
ERROR_PATCH_PACKAGE_UNSUPPORTED 1637 This patch package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
ERROR_PRODUCT_VERSION 1638 Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs in Control Panel.
ERROR_INVALID_COMMAND_LINE 1639 Invalid command line argument. Consult the Windows Installer SDK for detailed command-line help.
ERROR_INSTALL_REMOTE_DISALLOWED 1640 The current user is not permitted to perform installations from a client session of a server running the Terminal Server role service.
ERROR_SUCCESS_REBOOT_INITIATED 1641 The installer has initiated a restart. This message is indicative of a success.
ERROR_PATCH_TARGET_NOT_FOUND 1642 The installer cannot install the upgrade patch because the program being upgraded may be missing or the upgrade patch updates a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch.
ERROR_PATCH_PACKAGE_REJECTED 1643 The patch package is not permitted by system policy.
ERROR_INSTALL_TRANSFORM_REJECTED 1644 One or more customizations are not permitted by system policy.
ERROR_INSTALL_REMOTE_PROHIBITED 1645 Windows Installer does not permit installation from a Remote Desktop Connection.
ERROR_PATCH_REMOVAL_UNSUPPORTED 1646 The patch package is not a removable patch package. Available beginning with Windows Installer version 3.0.
ERROR_UNKNOWN_PATCH 1647 The patch is not applied to this product. Available beginning with Windows Installer version 3.0.
ERROR_PATCH_NO_SEQUENCE 1648 No valid sequence could be found for the set of patches. Available beginning with Windows Installer version 3.0.
ERROR_PATCH_REMOVAL_DISALLOWED 1649 Patch removal was disallowed by policy. Available beginning with Windows Installer version 3.0.
ERROR_INVALID_PATCH_XML 1650 The XML patch data is invalid. Available beginning with Windows Installer version 3.0.
ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT 1651 Administrative user failed to apply patch for a per-user managed or a per-machine application that is in advertise state. Available beginning with Windows Installer version 3.0.
ERROR_INSTALL_SERVICE_SAFEBOOT 1652 Windows Installer is not accessible when the computer is in Safe Mode. Exit Safe Mode and try again or try using System Restore to return your computer to a previous state. Available beginning with Windows Installer version 4.0.
ERROR_ROLLBACK_DISABLED 1653 Could not perform a multiple-package transaction because rollback has been disabled. Multiple-Package Installations cannot run if rollback is disabled. Available beginning with Windows Installer version 4.5.
ERROR_SUCCESS_REBOOT_REQUIRED 3010 A restart is required to complete the install. This message is indicative of a success. This does not include installs where the ForceReboot action is run.

 

Source http://msdn.microsoft.com/en-us/library/aa372835(VS.85).aspx

Posted in Reference | Comments Off on Windows Installer Error Codes