This is surly one of the issues that sysadmins struggle with, and have done so since OOo.1.0.0 I've finally "mastered" the installation, and will try to share my work here.
The issue has been debated in forums like http://www.oooforum.org/forum/viewtopic.php?t=606&postdays=0&postorder=asc&start=0 And much of the work is fetched from this tread initially started by "dali" and contributed by many users. The thread itself is now overfilled with small "it doesn't work", questions and different revisions of the same procedure. So, I'll try to summarize the thread here, and give detailed specs of my particular installation and give concrete config files++
Hope you find this useful, please give comments, and contributions. I'll try to keep this page structured, and try to explain where you may have to do customization. Many scripts and final solutions depend on what kind of logonscripts/domain policies etc. you have at your disposal.
My document is initially written for my particular enviroment, so to give you a better overlook of what you may have to differenciate in your installation I try to give the details of mine here.
Low budget network, with mixture of windows clients. With exception of the windows licence everything is free ware/open source/+ I do not have a Windows NT domain server, and thereby do not have access to domain group policy editor etc.
Linux Debian, Samba 3.x, running as PDC, no BDC.
All users have roaming profiles, since I have a mixture of win9x and win2k/xp and different locale on them each user may have typically 2-3 profiles, but I have not taken any particular measures to improve the profile handling.
All users have limited access to their clients. Recently they've been included in "Domain Users" but policy is not changed on any clients.
I'm using the free Kixtart as logon script, latest version, no modifications.
Some clients have Sun Java installed, but I'm now installing OOo without java, and it works for me. So installing the java runtime environment is not documented here, but see the thread in oooforum.org if you want it.
Each user have their home drive on the server to store documents. This is mapped to h:\, and My Documents in turn i mapped to h:\
Each user have their windows profile on the server, mapped to x:\
The server gives a share for program files, mapped to p:\ (read-only)
First we have to install the program files to the server side share (p:\). This is called a "network installation".
The forum thread gives example on howto do this part silently. I don't see the need for this, as It's only needed once in this environment. It could however be useful if you don't want to have the program files on the server, but I have no problem with net load, and many of the clients have small/old hard drives.
This installation has to be done for each user, and for each user on every different kind of computer (Win9x|NT|Win2k[locale]). And in my case num_users*3 is a lot of OOo installations... But, when run silently in a logonscript it really doesn't matter. The trick is to run the installation with a response file. How to write one is poorly documented, but some examples are given. This is my response file:
----OpenOfficeUserInst.txt start---- [Environment] INSTALLATIONMODE=INSTALL_WORKSTATION INSTALLATIONTYPE=WORKSTATION DESTINATIONPATH=x:\OpenOffice.Org 1.1.0 LANGUAGELIST=47 EndProcedure=PostSetup [JAVA] JavaSupport=preinstalled_or_none [Windows_Desktop_Integration] RegisterForMsWord=Yes RegisterForMsExcel=Yes RegisterForMsPowerPoint=Yes RegisterAsDefaultHtmlEditor=Yes [Procedures] Sub PostSetup SetReboot( False ) End Sub ----OpenOfficeUserInst.txt end----
Destination path in my example includes the OOo version, so it hase to updated when you want to upgrade to a new version.
In many examples the RegisterForXXXXX is written as Register4XXXXX.. don't know why, maybe it has changed from 1.0.0 to 1.1.0.
Language list: 47 is Norwegian, 46 is Swedish. I guess it's the normal iso country number, as used other places (like you country phone prefix).
Place this file in your \\server\netlogon\ directory, readable to all.
I'm doing it in my kixtart logon script. The script also makes sure that OOo is not already installed.
You don't want to run the silent install each time the same user log on, it gives an error message, and add some annoying login time.
The kixtart script uses variables for OOo version and install path, so it should be easy for you to adapt it if your system differs. You can get kixtart from www.kixtart.org, it's easy to install and documentation is adequate.
Also OOo installation tends to loose their file associations, so my logonscript also resets the file associations on each logon.
If you want to run the responsefile for testing or in another type of loginscript the command/syntax is:
OpenOffice\program\setup.exe -r:OpenOfficeUserinst.txt
This is the part(s) of my script related to OOo:
----logon.kix start-----
$OOoVersion = "1.1.0"
$OOoPath = "P:\OpenOffice.org"+$OOoVersion
$OOoFileName = $OOoPath+"\program\soffice.exe"
MapNetDrives
if (not Exist("x:\OpenOffice.Org "+$OOoVersion+"\setup.log")) and (not Exist("x:\OpenOffice.Org"+$OOoVersion+"\setup.log"))
InstallOOo
EndIf
SetOOoFileAssoc
Function MapNetDrives
use p: "\\server\programmer" /PERSISTENT
Use h: "\\master\@userid"
;x:\ is mapped by domain logon, no need to set it here.
EndFunction
Function InstallOOo
IF EXIST($OOoFileName)
IF EXIST("x:\")
? "Installerer OpenOffice.Org "+$OOoVersion+"..."
shell $OOoPath+ "\program\setup.exe" +" -r:\\server\netlogon\OpenOfficeUserinst.txt"
;REM Error codes are in StarOffice 6.0 Administration Guide (816-7522.pdf), page 56.
IF NOT @ERROR="0"
? "OOo install feil: ERRORLEVEL @ERROR"
EndIf
;### Remove link to Setup-program from user's start menu. , from eng and norwegian path
run 'DEL "%USERPROFILE%\Start-meny\Program\OpenOffice.org "+$OOoVersion+"\OpenOffice.org Setup.lnk" /F /Q 1>NUL 2>NUL'
run 'DEL "%USERPROFILE%\Start Menu\Program\OpenOffice.org "+$OOoVersion+"\OpenOffice.org Setup.lnk" /F /Q 1>NUL 2>NUL'
EndIf
EndIf
EndFunction
Function SetOOoFileAssoc
If InGroup("DOMAIN\Domain Administrators")
$Dummy = WRITEVALUE ("HKEY_CLASSES_ROOT\Applications\soffice.exe\shell\edit\command","",$OOoFileName,REG_SZ)
$Dummy = WRITEVALUE ("HKEY_CLASSES_ROOT\Applications\soffice.exe\shell\open\command","",$OOoFileName,REG_SZ)
run "regedit.exe /s \\server\netlogon\fixfileassocforooo.reg"
else
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\App Paths\soffice.exe","",$OOoFileName,REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\App Paths\soffice.exe","Path",$OOoPath,REG_SZ)
run "regedit.exe /s \\server\netlogon\fixfileassocforooo_user.reg"
EndIf
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.stc","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.std","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sxc","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sxd","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sxg","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sxi","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sxw","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.doc","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dot","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xls","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlt","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ppt","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pps","Application","soffice.exe %1",REG_SZ)
$Dummy = WRITEVALUE ("HKEY_USERS\@SID\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pot","Application","soffice.exe %1",REG_SZ)
EndFunction
----logon.kix end-----
Place this file on your \\server\netlogon\ directory, readable to all.
The complete script may become publicly available, I do however need to check for privileged information in it.
You need to set DOMAIN to your domain name on SetOOoFileAssoc function, and change/remove lines in InstallOOo to reflect your locale, and change \\server\ to reflect your servers smb name.
Use persistent mapping on p:\ since windows may want to start the OOo shortcut from the startup folder before this script mappes the network drive.
Fixfileassoc determines if an it's an administrator that log's on, if it is the file assoc is set for the computer in hklm, otherwise for the user profile in hkcu
I'm checking for user installation of OOo on two path's since some users have done manual installation of OOo before this script was in production.
There is probably a better way to check for an OOo installation in the registry. The logfile might be left behind if a user has done an unsuccessful uninstallation.
I really have commented my scripts well, but most of them are in Norwegian, and removed here.
The .reg files for resetting the file associations are included here:
----fixfileassicforooo.reg start-----
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\.doc]
@="soffice6.doc"
[HKEY_CLASSES_ROOT\.dot]
@="soffice6.dot"
[HKEY_CLASSES_ROOT\.pot]
@="soffice6.pot"
[HKEY_CLASSES_ROOT\.pps]
@="soffice6.pps"
[HKEY_CLASSES_ROOT\.ppt]
@="soffice6.ppt"
[HKEY_CLASSES_ROOT\.xls]
@="soffice6.xls"
[HKEY_CLASSES_ROOT\.xlt]
@="soffice6.xlt"
[HKEY_CLASSES_ROOT\soffice6.bak]
"Reg4MsDocState"=dword:0000003f
[HKEY_CLASSES_ROOT\soffice6.doc]
@="Microsoft Word Document"
[HKEY_CLASSES_ROOT\soffice6.doc\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,1"
[HKEY_CLASSES_ROOT\soffice6.doc\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice6.doc\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice6.doc\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice6.doc\shell\open]
[HKEY_CLASSES_ROOT\soffice6.doc\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice6.doc\shell\print]
[HKEY_CLASSES_ROOT\soffice6.doc\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice6.doc\shell\printto]
[HKEY_CLASSES_ROOT\soffice6.doc\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice6.dot]
@="Microsoft Word Template"
[HKEY_CLASSES_ROOT\soffice6.dot\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,2"
[HKEY_CLASSES_ROOT\soffice6.dot\shell]
@="new"
[HKEY_CLASSES_ROOT\soffice6.dot\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice6.dot\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice6.dot\shell\open]
[HKEY_CLASSES_ROOT\soffice6.dot\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice6.dot\shell\print]
[HKEY_CLASSES_ROOT\soffice6.dot\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice6.dot\shell\printto]
[HKEY_CLASSES_ROOT\soffice6.dot\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice6.pot]
@="Microsoft PowerPoint Template"
[HKEY_CLASSES_ROOT\soffice6.pot\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,8"
[HKEY_CLASSES_ROOT\soffice6.pot\shell]
@="new"
[HKEY_CLASSES_ROOT\soffice6.pot\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice6.pot\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice6.pot\shell\open]
[HKEY_CLASSES_ROOT\soffice6.pot\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice6.pot\shell\print]
[HKEY_CLASSES_ROOT\soffice6.pot\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice6.pot\shell\printto]
[HKEY_CLASSES_ROOT\soffice6.pot\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice6.pps]
@="Microsoft PowerPoint Show"
[HKEY_CLASSES_ROOT\soffice6.pps\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,7"
[HKEY_CLASSES_ROOT\soffice6.pps\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice6.pps\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice6.pps\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice6.pps\shell\open]
[HKEY_CLASSES_ROOT\soffice6.pps\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice6.pps\shell\print]
[HKEY_CLASSES_ROOT\soffice6.pps\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice6.pps\shell\printto]
[HKEY_CLASSES_ROOT\soffice6.pps\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice6.ppt]
@="Microsoft PowerPoint Presentation"
[HKEY_CLASSES_ROOT\soffice6.ppt\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,7"
[HKEY_CLASSES_ROOT\soffice6.ppt\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice6.ppt\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice6.ppt\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice6.ppt\shell\open]
[HKEY_CLASSES_ROOT\soffice6.ppt\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice6.ppt\shell\print]
[HKEY_CLASSES_ROOT\soffice6.ppt\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice6.ppt\shell\printto]
[HKEY_CLASSES_ROOT\soffice6.ppt\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice6.xls]
@="Microsoft Excel Worksheet"
[HKEY_CLASSES_ROOT\soffice6.xls\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,3"
[HKEY_CLASSES_ROOT\soffice6.xls\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice6.xls\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice6.xls\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice6.xls\shell\open]
[HKEY_CLASSES_ROOT\soffice6.xls\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice6.xls\shell\print]
[HKEY_CLASSES_ROOT\soffice6.xls\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice6.xls\shell\printto]
[HKEY_CLASSES_ROOT\soffice6.xls\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice6.xlt]
@="Microsoft Excel Template"
[HKEY_CLASSES_ROOT\soffice6.xlt\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,4"
[HKEY_CLASSES_ROOT\soffice6.xlt\shell]
@="new"
[HKEY_CLASSES_ROOT\soffice6.xlt\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice6.xlt\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice6.xlt\shell\open]
[HKEY_CLASSES_ROOT\soffice6.xlt\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice6.xlt\shell\print]
[HKEY_CLASSES_ROOT\soffice6.xlt\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice6.xlt\shell\printto]
[HKEY_CLASSES_ROOT\soffice6.xlt\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument\CurVer]
@="soffice.StarCalcDocument.6"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6]
@="OpenOffice.org 1.1 Drawing"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\CLSID]
@="{41662FC2-0D57-4aff-AB27-AD2E12E7C273}"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,5"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\Insertable]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\protocol]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\protocol\StdFileEditing]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\protocol\StdFileEditing\verb]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5]
@="OpenOffice.org 5.0 Template"
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,15"
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\shell]
@="new"
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarOfficeTemplate.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5]
@="OpenOffice.org 5.0 Spreadsheet"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,3"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6]
@="OpenOffice.org 1.1 Drawing Template"
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,6"
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shell]
@="new"
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarDrawTemplate.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument\CurVer]
@="soffice.StarWriterDocument.6"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6]
@="OpenOffice.org 1.1 Spreadsheet"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\CLSID]
@="{7B342DC4-139A-4a46-8A93-DB0827CCEE9C}"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,3"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\Insertable]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\protocol]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\protocol\StdFileEditing]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\protocol\StdFileEditing\verb]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarCalcDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument\CurVer]
@="soffice.StarImpressDocument.6"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5]
@="OpenOffice.org 5.0 Text Document"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,1"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6]
@="OpenOffice.org 1.1 Spreadsheet Template"
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,4"
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shell]
@="new"
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarCalcTemplate.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5]
@="OpenOffice.org 5.0 Presentation"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,7"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6]
@="OpenOffice.org 1.1 Text Document"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\CLSID]
@="{30A2652A-DDF7-45e7-ACA6-3EAB26FC8A4E}"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,1"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\Insertable]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\protocol]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\protocol\StdFileEditing]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\protocol\StdFileEditing\verb]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarWriterDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\soffice.StarChartDocument]
[HKEY_CLASSES_ROOT\soffice.StarChartDocument\CurVer]
@="soffice.StarChartDocument.5"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6]
@="OpenOffice.org 1.1 Presentation"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\CLSID]
@="{E5A0B632-DFBA-4549-9346-E414DA06E6F8}"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,7"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\Insertable]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\protocol]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\protocol\StdFileEditing]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\protocol\StdFileEditing\verb]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\show]
@="Show"
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shell\show\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -show \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarImpressDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument\CurVer]
@="soffice.StarWriterGlobalDocument.6"
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5]
@="OpenOffice.org 5.0 Chart"
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,12"
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarChartDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6]
@="OpenOffice.org 1.1 Presentation Template"
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,8"
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shell]
@="new"
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarImpressTemplate.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5]
@="OpenOffice.org 5.0 Master Document"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,10"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarConfigFile.6]
@="OpenOffice.org 1.1 Configuration File"
[HKEY_CLASSES_ROOT\soffice.StarConfigFile.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,17"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument\CurVer]
@="soffice.StarMathDocument.6"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5]
@="OpenOffice.org 5.0 Master Document"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,10"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument\CurVer]
@="soffice.StarDrawDocument.6"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5]
@="OpenOffice.org 5.0 Formula"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,14"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6]
@="OpenOffice.org 1.1 Master Document"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,10"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarWriterGlobalDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5]
@="OpenOffice.org 5.0 Drawing"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,5"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarDrawDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6]
@="OpenOffice.org 1.1 Formula"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\CLSID]
@="{D0484DE6-AAEE-468a-991F-8D4B0737B57A}"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,14"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\Insertable]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\protocol]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\protocol\StdFileEditing]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\protocol\StdFileEditing\verb]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shell]
@="open"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarMathDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6]
@="OpenOffice.org 1.1 Text Document Template"
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,2"
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shell]
@="new"
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shell\new]
@="&New"
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shell\open]
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shell\print]
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shell\printto]
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shellex]
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shellex\PropertySheetHandlers]
[HKEY_CLASSES_ROOT\soffice.StarWriterTemplate.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CLASSES_ROOT\.sxc]
"Content Type"="application/vnd.sun.xml.calc"
@="soffice.StarCalcDocument.6"
[HKEY_CLASSES_ROOT\.sxc\soffice.StarCalcDocument.6]
[HKEY_CLASSES_ROOT\.sxc\soffice.StarCalcDocument.6\ShellNew]
"FileName"="soffice.sxc"
[HKEY_CLASSES_ROOT\.sxd]
"Content Type"="application/vnd.sun.xml.draw"
@="soffice.StarDrawDocument.6"
[HKEY_CLASSES_ROOT\.sxd\soffice.StarDrawDocument.6]
[HKEY_CLASSES_ROOT\.sxd\soffice.StarDrawDocument.6\ShellNew]
"FileName"="soffice.sxd"
[HKEY_CLASSES_ROOT\.sxg]
"Content Type"="application/vnd.sun.xml.writer.global"
@="soffice.StarWriterGlobalDocument.6"
[HKEY_CLASSES_ROOT\.sxm]
"Content Type"="application/vnd.sun.xml.math"
@="soffice.StarMathDocument.6"
[HKEY_CLASSES_ROOT\.sxw]
"Content Type"="application/vnd.sun.xml.writer"
@="soffice.StarWriterDocument.6"
[HKEY_CLASSES_ROOT\.sxw\soffice.StarWriterDocument.6]
[HKEY_CLASSES_ROOT\.sxw\soffice.StarWriterDocument.6\ShellNew]
"FileName"="soffice.sxw"
[HKEY_CLASSES_ROOT\.sxi]
"Content Type"="application/vnd.sun.xml.impress"
@="soffice.StarImpressDocument.6"
[HKEY_CLASSES_ROOT\.sxi\soffice.StarImpressDocument.6]
[HKEY_CLASSES_ROOT\.sxi\soffice.StarImpressDocument.6\ShellNew]
"FileName"="soffice.sxi"
----fixfileassicforooo.reg end-----
----fixfileassicforooo_user.reg start-----
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Classes\.doc]
@="soffice6.doc"
[HKEY_CURRENT_USER\Software\Classes\.dot]
@="soffice6.dot"
[HKEY_CURRENT_USER\Software\Classes\.pot]
@="soffice6.pot"
[HKEY_CURRENT_USER\Software\Classes\.pps]
@="soffice6.pps"
[HKEY_CURRENT_USER\Software\Classes\.ppt]
@="soffice6.ppt"
[HKEY_CURRENT_USER\Software\Classes\.xls]
@="soffice6.xls"
[HKEY_CURRENT_USER\Software\Classes\.xlt]
@="soffice6.xlt"
[HKEY_CURRENT_USER\Software\Classes\soffice6.bak]
"Reg4MsDocState"=dword:0000003f
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc]
@="Microsoft Word Document"
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,1"
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice6.doc\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot]
@="Microsoft Word Template"
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,2"
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\shell]
@="new"
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice6.dot\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot]
@="Microsoft PowerPoint Template"
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,8"
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\shell]
@="new"
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice6.pot\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps]
@="Microsoft PowerPoint Show"
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,7"
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice6.pps\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt]
@="Microsoft PowerPoint Presentation"
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,7"
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice6.ppt\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls]
@="Microsoft Excel Worksheet"
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,3"
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice6.xls\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt]
@="Microsoft Excel Template"
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,4"
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\shell]
@="new"
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice6.xlt\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument\CurVer]
@="soffice.StarCalcDocument.6"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6]
@="OpenOffice.org 1.1 Drawing"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\CLSID]
@="{41662FC2-0D57-4aff-AB27-AD2E12E7C273}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,5"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\Insertable]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\protocol]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\protocol\StdFileEditing]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\protocol\StdFileEditing\verb]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5]
@="OpenOffice.org 5.0 Template"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,15"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\shell]
@="new"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarOfficeTemplate.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5]
@="OpenOffice.org 5.0 Spreadsheet"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,3"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6]
@="OpenOffice.org 1.1 Drawing Template"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,6"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shell]
@="new"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawTemplate.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument\CurVer]
@="soffice.StarWriterDocument.6"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6]
@="OpenOffice.org 1.1 Spreadsheet"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\CLSID]
@="{7B342DC4-139A-4a46-8A93-DB0827CCEE9C}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,3"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\Insertable]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\protocol]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\protocol\StdFileEditing]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\protocol\StdFileEditing\verb]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument\CurVer]
@="soffice.StarImpressDocument.6"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5]
@="OpenOffice.org 5.0 Text Document"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,1"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6]
@="OpenOffice.org 1.1 Spreadsheet Template"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,4"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shell]
@="new"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarCalcTemplate.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5]
@="OpenOffice.org 5.0 Presentation"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,7"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6]
@="OpenOffice.org 1.1 Text Document"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\CLSID]
@="{30A2652A-DDF7-45e7-ACA6-3EAB26FC8A4E}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,1"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\Insertable]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\protocol]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\protocol\StdFileEditing]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\protocol\StdFileEditing\verb]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument\CurVer]
@="soffice.StarChartDocument.5"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6]
@="OpenOffice.org 1.1 Presentation"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\CLSID]
@="{E5A0B632-DFBA-4549-9346-E414DA06E6F8}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,7"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\Insertable]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\protocol]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\protocol\StdFileEditing]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\protocol\StdFileEditing\verb]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\show]
@="Show"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shell\show\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -show \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument\CurVer]
@="soffice.StarWriterGlobalDocument.6"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5]
@="OpenOffice.org 5.0 Chart"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,12"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarChartDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6]
@="OpenOffice.org 1.1 Presentation Template"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,8"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shell]
@="new"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarImpressTemplate.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5]
@="OpenOffice.org 5.0 Master Document"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,10"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarConfigFile.6]
@="OpenOffice.org 1.1 Configuration File"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarConfigFile.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,17"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument\CurVer]
@="soffice.StarMathDocument.6"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5]
@="OpenOffice.org 5.0 Master Document"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,10"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument\CurVer]
@="soffice.StarDrawDocument.6"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5]
@="OpenOffice.org 5.0 Formula"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,14"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6]
@="OpenOffice.org 1.1 Master Document"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,10"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterGlobalDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5]
@="OpenOffice.org 5.0 Drawing"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,5"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarDrawDocument.5\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6]
@="OpenOffice.org 1.1 Formula"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\CLSID]
@="{D0484DE6-AAEE-468a-991F-8D4B0737B57A}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,14"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\Insertable]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\protocol]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\protocol\StdFileEditing]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\protocol\StdFileEditing\server]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\protocol\StdFileEditing\verb]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\protocol\StdFileEditing\verb\-1]
@="&Show"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\protocol\StdFileEditing\verb\-2]
@="&Open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\protocol\StdFileEditing\verb\0]
@="&Edit"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shell]
@="open"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarMathDocument.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6]
@="OpenOffice.org 1.1 Text Document Template"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\DefaultIcon]
@="p:\\OpenOffice.org1.1.0\\program\\soffice.exe,2"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shell]
@="new"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shell\new]
@="&New"
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shell\new\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -n \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shell\open]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shell\open\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -o \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shell\print]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shell\print\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -p \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shell\printto]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shell\printto\command]
@="\"p:\\OpenOffice.org1.1.0\\program\\soffice.exe\" -pt \"%2\" \"%1\""
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shellex]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shellex\PropertySheetHandlers]
[HKEY_CURRENT_USER\Software\Classes\soffice.StarWriterTemplate.6\shellex\PropertySheetHandlers\MyPropSheet1]
@="{63542C48-9552-494A-84F7-73AA6A7C99C1}"
[HKEY_CURRENT_USER\Software\Classes\.sxc]
"Content Type"="application/vnd.sun.xml.calc"
@="soffice.StarCalcDocument.6"
[HKEY_CURRENT_USER\Software\Classes\.sxc\soffice.StarCalcDocument.6]
[HKEY_CURRENT_USER\Software\Classes\.sxc\soffice.StarCalcDocument.6\ShellNew]
"FileName"="soffice.sxc"
[HKEY_CURRENT_USER\Software\Classes\.sxd]
"Content Type"="application/vnd.sun.xml.draw"
@="soffice.StarDrawDocument.6"
[HKEY_CURRENT_USER\Software\Classes\.sxd\soffice.StarDrawDocument.6]
[HKEY_CURRENT_USER\Software\Classes\.sxd\soffice.StarDrawDocument.6\ShellNew]
"FileName"="soffice.sxd"
[HKEY_CURRENT_USER\Software\Classes\.sxg]
"Content Type"="application/vnd.sun.xml.writer.global"
@="soffice.StarWriterGlobalDocument.6"
[HKEY_CURRENT_USER\Software\Classes\.sxm]
"Content Type"="application/vnd.sun.xml.math"
@="soffice.StarMathDocument.6"
[HKEY_CURRENT_USER\Software\Classes\.sxw]
"Content Type"="application/vnd.sun.xml.writer"
@="soffice.StarWriterDocument.6"
[HKEY_CURRENT_USER\Software\Classes\.sxw\soffice.StarWriterDocument.6]
[HKEY_CURRENT_USER\Software\Classes\.sxw\soffice.StarWriterDocument.6\ShellNew]
"FileName"="soffice.sxw"
[HKEY_CURRENT_USER\Software\Classes\.sxi]
"Content Type"="application/vnd.sun.xml.impress"
@="soffice.StarImpressDocument.6"
[HKEY_CURRENT_USER\Software\Classes\.sxi\soffice.StarImpressDocument.6]
[HKEY_CURRENT_USER\Software\Classes\.sxi\soffice.StarImpressDocument.6\ShellNew]
"FileName"="soffice.sxi"
----fixfileassicforooo_user.reg end-----
As you can see these registry files also hard codes the installation path, and OOo version, so they need to be updated when you want to install a new version.
The version number really should be included, windows tends to mess things up with older unsuccessful installations if you don't.
mental note to self: find time to code a web page that generate all needed files, with correct hard coded path and version number :). The forum however already have a .bat file for some of them.
I've written this first revision of the document from the top of my head (except the included config files), and I beleive that's it for my environment. The forum thread explains how to install the font files with an administrator account, install Java and installing user .xml files to be able to skip the OOo "Please register with OOo" dialogue on first OOo start up++, but I've not yet found it necessary to implement and that's why it's not included here. I hope you like this document, and god luck with your installation. Please give feedback on the different aspect of installation, and if your system differs tell me how, and submit your needed changes to the procedure. If I get good response I'll try to document the rest of our installation.
PS. As you probably noticed English is not my native language, so grammar/spelling corrections are also welcomme.
Sven Tore Iversen
sventore AT iversendata.no