何小碩's profileGet More... ExperiencePhotosBlogListsMore Tools Help

Blog


    May 29

    Core.CSS

    Skinning a SharePoint 2007 site with Master Pages is by no means and open/shut case of altering the look and feel of a site.  There are some CSS inheritance issues that have to be contended with first.

    As a quick refresher, styles applied to elements in a page will be styled according to the last property that was applied to it.   An inline style will override a style listed in the HEAD tag or in a linked CSS file.  Additionally, you can selectively override style properties by selectively listing what should be overridden.  For example:

    <style>
    Body {
      Background: black;
      Margin: 0px;
      }
    </style>
    </head>
    <body style="background: white">

    In this sample, the body style of the page will be white with no margins because the inline style only overrode the background property.

    This overriding facet of CSS is key in SharePoint.  Being 100% aware of what style sheets are called where can really help decrease the number of headaches you incur while trying to figure out why your custom styles are not appearing in your site.

    Here is a general breakdown of how styles are pulled into a rendered SharePoint page in regards to master pages:

    • If your master page links to a custom CSS file, the CSS file will get pulled BEFORE CORE.CSS.
    • If your master page links to a CSS file, and CORE.CSS has been unghosted for the site, the custom CSS file will get pulled AFTER CORE.CSS.
    • If you specify a custom CSS file in the Master Page settings (Site Actions/Site Settings/Master Page), the custom CSS file will get pulled AFTER CORE.CSS. Note: CSS overrides and new styles will also be applied to _layouts pages.
    • Any styles listed or linked to in the PlaceHolderAdditionalPageHead ASP content placeholder will get pulled AFTER CORE.CSS.   Problem with this approach is you will have to list your styles or link to your custom style sheet in every page layout file you create.
    • Styles listed in the master page file (not linked to, actually listed out in a set of STYLE tags beneath the links to CSS files) will be called AFTER all links to CSS files, including CORE.CSS.
    • Master pages deployed via a Feature will call CORE.CSS AFTER the custom CSS file(s).

    So if you want to override any styles that are listed in CORE.CSS (and you will be if you are skinning your site), you will need to do one of the following:

    • List the styles in the master page file
    • Link to the style sheet through Master Page settings
    • Include the styles in the PlaceHolderAdditionalPageHead ASP content placeholder in your page layout files
    • Unghost CORE.CSS for the site.    I don't recommend this.

    My recommendation is to store styles in the master page itself in a set of STYLE tags.  If your master page design has variations for assorted subsites, store the CSS differences in a file and reference it via the Master Page settings, or if you need CSS changes for a single page, store it in an HTML file and reference it in a hidden Content Editor Web Part.

    ** This post refers to Microsoft Office SharePoint Server 2007 (MOSS 2007) Beta 2 Tech Refresh.   Details are subject to change in the RTM version. **

    Create a Feature: Master Pages for Site Collections

    This article refers to Microsoft Office SharePoint Server 2007 (MOSS 2007) Beta 2 Tech Refresh.   Details are subject to change in the RTM version.

    One way master pages can be stored and used in MOSS 2007 sites is through creation in SharePoint Designer and storage in the Master Page Gallery.   This method will create a master page in the content database.  But what if you need to use one or two master page across multiple site collections?  For ease of updates and maintenance, we don't necessarily want to store a copy of the master page in each site collection. Instead we can create and store master pages on the file system as a SharePoint Feature and make it available for new and existing site collections.

    If for some reason you don't want to create a custom Feature, you can manually work through this process by editing the default Publishing Layouts Feature that ships with SharePoint. See this article here for instructions.

    A huge thanks to my friend Andrew Connell for showing me the light on how to accomplish this with a custom feature. His help was invaluable.

    Create a Feature: Add Custom Master Pages to your Site Collections

    1. Navigate to the Features directory on your web server:
      Local Drive:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES
    2. Locate the PublishingLayouts Feature directory.  Copy this folder and paste it at the root of Features.  Rename the folder to a unique name of your choice.  For my example I used CustomMasterPages.
      Location of custom feature folder
    3. Open your new Feature directory. At this point you can leave all the default folders, or you can choose to clear out what you don't want to use. You only have to keep Feature.xml and ProvisionedFiles.xml. To create a clean file set, at a minimum clear out the contents of each sub folder in the directory (en-us (or your language), Images, MasterPages, PageLayouts, Styles).
    4. To start, we need at least one master page file in the Feature folder. You can copy one of the existing master pages, paste the copy in the directory, and rename the copy to your unique name, or alternately paste in your custom master page, or create a new blank file with the extension of .master.
      Feature folder contents
      Tip! To just get a master page going, copy the sample code from this article and paste it in your custom master page file.  That will get you up and running for this article and give you a good starting point for your customizations once the master page has been applied to your site.  If you do this, after pasting the code into your master page file, locate this line of code and add a missing quotation mark: <asp:ContentPlaceHolder id="PlaceHolderTitleBreadcrumb" runat="server"/>
    5. Next, open the ProvisionedFiles.xml file in Notepad or a similar editing application.
      Local Drive:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\YourFeature
    6. We are going to delete out all of the content and only keep the OSGMasterPages Module tag and the PublishingLayoutsPreviewImages Module tag.  As opposed to listing out what to strip out, here is the code you need in this file:
      <!-- _lcid="1033" _version="12.0.4407" _dal="1" -->
      <!-- _LocalBinding -->
      <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
      <Module Name="OSGMasterPages" Url="_catalogs/masterpage" Path="MasterPages" RootWebOnly="TRUE">
      <File Url="Sample.master" Type="GhostableInLibrary">
      <Property Name="ContentType" Value="My Sample Master Page" />
      <Property Name="PublishingPreviewImage" Value="~SiteCollection/_catalogs/masterpage/$Resources:core,Culture;/Preview Images/sample.png, ~SiteCollection/_catalogs/masterpage/$Resources:core,Culture;/Preview Images/sample.png" />
      <Property Name="MasterPageDescription" Value="This is my sample master page for use with collaboration or publishing sites." />
      </File>
      </Module>
      <Module Name="PublishingLayoutsPreviewImages" Url="_catalogs/masterpage" IncludeFolders="??-??" Path="" RootWebOnly="TRUE">
      <File Url="Sample.png" Name="Preview Images/Sample.png" Type="GhostableInLibrary">
      </File>
      </Module>
      </Elements>
    7. Update the properties to reflect the new master page details:
      1. Change the URL to your custom master page.:
        <File Url="Sample.master" Type="GhostableInLibrary">
      2. Change the Preview Images to a custom image:
        <Property Name="PublishingPreviewImage" Value="~SiteCollection/_catalogs/masterpage/$Resources:core,Culture;/Preview Images/Sample.png, ~SiteCollection/_catalogs/masterpage/$Resources:core,Culture;/Preview Images/Sample.png" />
        Add the custom image to the following directory:
        Local Drive:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\PublishingLayouts\en-us
      3. Update the Description.  Enter a description for your master page:
        <Property Name="MasterPageDescription" Value="This is my sample master page for use with collaboration or publishing sites." />
      4. Update the image names:
        <File Url="Sample.png" Name="Preview Images/Sample.png" Type="GhostableInLibrary">
    8. Save the ProvisionedFiles.xml file.
    9. Create a preview image in the language folder (in this case, en-us).
      Preview image location
    10. Next, open the Feature.xml file in Notepad or a similar editing application.
      Local Drive:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\YourFeature
    11. There are four things you need to edit in this file:
      1. Change the Feature ID to a unique GUID.  You can generate GUIDs in Visual Studio (Tools - Create GUID - Registry Format - Copy). Paste the new GUID for the ID and remove the curly brackets.
        <Feature Id="FDFCD4C4-F0D9-43b5-8739-A33681049657"
      2. Update the title:
        Title="Custom Master Pages"
      3. Update the description:
        Description="Custom master pages for use across multiple site collections."
      4. Change the Hidden state to False:
        Hidden="False"
    12. Save the Feature.xml file.
    13. Recycle the Application Pool for the site you plan to install the Feature on, or reset IIS (Command Prompt - IISRESET).
    14. You are now ready to install the new Feature on the web server. Open a Command Prompt and enter the following:
      1. Change directories to the BIN folder in the 12 hive so you can use STSADM.exe:
        cd C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN
      2. Launch STSADM and install the feature:
        stsadm -o installfeature -name YourFeatureDirectoryName
      Tip! To access STSADM quicker, refer to Andrew Connell's SharePoint Developer Tip.
    15. Now we will activate the feature on the site.
      1. Open your site and navigate to the Site Collection Features settings page. Site Actions - Site Settings - Modify All Site Settings - Site Collection Features (under the Site Collection Administration submenu).
      2. The new feature will be listed:
        Custom feature in Feature list
      3. Select Activate.
    16. The master pages are now ready to use on the site. Navigate to the Master Page settings by selecting Site Settings in the breadcrumbs and choosing Master Page. (Or Site Actions - Site Settings - Modify All Site Settings - Master page (under the Look and Feel submenu).
    17. Depending on your requirements, in either or both the Site Master Page setting and the System Master Page setting, select your drop down box and choose your custom master page. 
      Master page selection drop down
      1. Select OK.
    18. The master page is applied to the site.  Note that I manually added the "Sample Master Page" text to the Sample.master file. It will not appear on yours by default.
      Sample Master Page

    Adding to our Feature: Adding More Custom Master Pages to your Feature

    If you ever need to add new master pages to this feature, you can edit the Feature and redeploy it.  Alternately, you can create a new Feature for each custom master page. For that scenario, just follow the steps above for creating a new feature. The following outlines how to update your Feature with new master pages.

    1. Navigate to your custom master page Feature directory and add the appropriate files for your new master pages.
    2. Navigate to and open the ProvisionedFiles.xml file.  Add a FILE tag block for each new master page for both the OSGMasterPages Module and the PublishingLayoutPreviewImages Module.  Save the file.
    3. Recycle the Application Pool for the site you plan to install the Feature on, or reset IIS (Command Prompt - IISRESET).
    4. You are now ready to reinstall the updated Feature on the web server. Open a Command Prompt and enter the following:
      1. Change directories to the BIN folder in the 12 hive so you can use STSADM.exe:
        cd C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN
      2. Launch STSADM and install the feature:
        stsadm -o installfeature -name YourFeatureDirectoryName -force
      Tip! To access STSADM quicker, refer to Andrew Connell's SharePoint Developer Tip.
    5. Now we will deactivate and reactivate the feature on the site.
      1. Open your site and navigate to the Site Collection Features settings page. Site Actions - Site Settings - Modify All Site Settings - Site Collection Features (under the Site Collection Administration submenu).
      2. Your existing feature will be listed:
        View of Active Feature
      3. Select Deactivate.
      4. A warning message will appear.  Select Deactivate the feature.
      5. The Feature list will reload.  Select Activate next to your custom feature.
    6. Your new master pages are ready for use.
    May 25

    MOSS 2007 網站範本代碼表

    GLOBAL#0 = Global template (1033)
    STS#0 = Team Site (1033)
    STS#1 = Blank Site (1033)
    STS#2 = Document Workspace (1033)
    MPS#0 = Basic Meeting Workspace (1033)
    MPS#1 = Blank Meeting Workspace (1033)
    MPS#2 = Decision Meeting Workspace (1033)
    MPS#3 = Social Meeting Workspace (1033)
    MPS#4 = Multipage Meeting Workspace (1033)
    CENTRALADMIN#0 = Central Admin Site (1033)
    WIKI#0 = Wiki Site (1033)
    BLOG#0 = Blog (1033)
    BDR#0 = Document Center (1033)
    OFFILE#0 = Records Center (1033)
    OFFILE#1 = Records Center (1033)
    OSRV#0 = Shared Services Administration Site (1033)
    SPS#0 = SharePoint Portal Server Site (1033)
    SPSPERS#0 = SharePoint Portal Server Personal Space (1033)
    SPSMSITE#0 = Personalization Site (1033)
    SPSTOC#0 = Contents area Template (1033)
    SPSTOPIC#0 = Topic area template (1033)
    SPSNEWS#0 = News Site (1033)
    CMSPUBLISHING#0 = Publishing Site (1033)
    BLANKINTERNET#0 = Publishing Site (1033)
    BLANKINTERNET#1 = Press Releases Site (1033)
    BLANKINTERNET#2 = Publishing Site with Workflow (1033)
    SPSNHOME#0 = News Site (1033)
    SPSSITES#0 = Site Directory (1033)
    SPSCOMMU#0 = Community area template (1033)
    SPSREPORTCENTER#0 = Report Center (1033)
    SPSPORTAL#0 = Collaboration Portal (1033)
    SRCHCEN#0 = Search Center with Tabs (1033)
    PROFILES#0 = Profiles (1033)
    BLANKINTERNETCONTAINER#0 = Publishing Portal (1033)
    SPSMSITEHOST#0 = My Site Host (1033)
    SRCHCENTERLITE#0 = Search Center (1033)
    SRCHCENTERLITE#1 = Search Center (1033)
    SPSBWEB#0 = SharePoint Portal Server BucketWeb Template (1033)

    May 21

    好東西

    SharePoint on your Phone!

    One of the interesting new features in MOSS 2007 is the support around mobile devices. In this article, I’ll aim to give you a quick overview of how you can get the next version of SharePoint on your phone.

    What are Mobile Views?

    Every list and library in MOSS 2007 or WSSv3 is capable of hosting ‘Mobile Views’. These are standard views of lists or libraries that an administrator has defined as being mobile enabled. You can also view individual list items in mobile form.

    This is a picture of the mobile view for a standard task item.

    How do you navigate to these Mobile Views?

    Every site has a mobile home. You can get to it by simply appending an ‘m’ on the end of the URL. For example the mobile view for the following URL http://<server>/TestSite can be accessed by http://<server>/TestSite/m.  

    From the mobile home you can navigate through the lists, libraries and list items in the site.

    This picture shows the mobile home of a standard team site

    How do I configure Mobile Views?

    Each list has a default mobile view, but you can configure any normal view as being ‘mobile’. This is all done through the same interface that you’d use to modify view filters, sorts etc.

    This picture shows the UI for enabling a normal view as being ‘mobile’

    When you access a list using your device, you can use a drop-down to choose the most appropriate view. However, generally speaking the most sensible views for a mobile device are pre-configured as the default mobile view. For example, the default for a tasks list is ‘my tasks’.

    How do I play with this more?

    The easiest way to investigate this further is to get the Microsoft Windows Mobile emulator from http://msdn.microsoft.com/mobility/windowsmobile/downloads/emulatorpreview/default.aspx. Follow the instructions on the page for getting onto Betaplace and downloading the emulator.

    Once you have the installation file, I suggest that you install it directly onto your SharePoint server. This way it is much easier to configure the networking between the server and the emulator.

    The emulator will allow you to emulate a smart phone or PDA. I found that the PDA is easiest to work with. Follow these instructions to get a mobile view of SharePoint on your PDA emulator (you should be able to adapt them for SmartPhone if you are familiar with the SmartPhone interface)

    -          Install the emulator and start the ‘Emulate Pocket PC-WM 2003 SE(Cold Boot)’ from your start menu

    -          Map your real network card to the device by going to File > Configure > Network Tab > Enable ‘NE2000 PCMCIA adapter and bind to’ and click ‘OK’

    Note: All of the following instructions are for the device interface itself, not the emulator application, unless otherwise stated.

    -          Go to ‘Settings’ from the start menu

    -          Click on ‘Network Cards’

    -          Choose ‘The Internet’ on the ‘My network card connects to’ drop-down

    -          Click on ‘NE2000 Compatible Adapter’

    -          Set your IP and Name Server settings in accordance with your environment (it needs to be in the same subnet as your server).

    -          Click ‘OK’ until you are back to your home screen

    -          On the emulator application, disable and re-enable the network card mapping from File > Configure > Network Tab > Enable ‘NE2000 PCMCIA adapter and bind to’ (this is the equivalent to unplugging the PCMCIA card, you’ll see the icon change on the device screen)

    -          On the device, wait for the network icon to show that it has re-connected.

    -          You will get a new icon at the top of the device screen. Click on it and choose ‘This network card connects me to the internet’

    -          Load Internet Explorer from the start menu and type your portal URL with an /m at the end

    -          Enter login credentials and the mobile home should appear

    I hope this was interesting.

    Published Friday, April 21, 2006 6:32 PM by Martin.Kearn@Microsoft.com

    MOSS SP1 更新後檔案版本

    The 2007 Microsoft Office servers SP1, 32-bit edition
    Dlcappwwsp1.msp
    File name File version
    Microsoft.Office.Server.Conversions.Launcher.exe 12.0.6211.1000
    Microsoft.Office.Server.Conversions.LoadBalancer.exe 12.0.6211.1000
    Dlcwwsp1.msp
    File name File version
    Microsoft.Office.Workflow.Routing.dll 12.0.6211.1000
    Ifswfewwsp1.msp
    File name File version
    Core.js Not applicable
    Htmlchkr.dll 12.0.6211.1000
    Ifswfe.dll 12.0.6211.1000
    Ifswfepriv.dll 12.0.6211.1000
    Signatureeula.aspx Not applicable
    Osrchappwwsp1.msp
    File name File version
    BDCConnector.dll 12.0.6211.1000
    ChsBrkr.dll 12.0.6211.1000
    CHTBRKR.dll 12.0.6211.1000
    KorWbrkr.dll 12.0.6211.1000
    Mir.fi.dll 1.0.0.7
    Msgfilt.dll 2006.822.6211.1000
    Mssdmn.exe 12.0.6211.1000
    Mssearch.exe 12.0.6211.1000
    Mssph.dll 12.0.6211.1000
    Notesph.dll.oss 12.0.6214.1000
    Offfiltx.dll 2006.1200.6212.1000
    Oss.cswf32.lex Not applicable
    Oss.korwbrkr.lex Not applicable
    Oss.search.admin.asmx Not applicable
    Oss.search.global.admin.asmx Not applicable
    Pkmexsph.dll 12.0.6211.1000
    Pkmnpw.dll 12.0.6211.1000
    Spsimpph.dll 12.0.6211.1000
    Srchipp.dll 12.0.6211.1000
    Thawbrkr.dll 12.0.6211.1000
    Trklr.dll 1.18.0.0
    Osrchwfewwsp1.msp
    File name File version
    Bdcconn.dll 12.0.6211.1000
    Chsbrkr.dll 12.0.6211.1000
    Chtbrkr.dll 12.0.6211.1000
    Danlr.dll 1.0.0.16
    Grclr.dll 1.0.0.11
    Grcste.dll 1.0.0.13
    Huczlr.dll 2.0.4.2
    Korwbrkr.dll 12.0.6211.1000
    Lrpolish.dll 1.9.0.0
    Mir.fi.dll 1.0.0.7
    Msgfilt.dll 2006.822.6211.1000
    Msscntrs.dll 12.0.6211.1000
    Mssdmn.exe 12.0.6211.1000
    Mssearch.exe 12.0.6211.1000
    Mssph.dll 12.0.6211.1000
    Mssrch.dll 12.0.6211.1000
    Notesph.dll 12.0.6214.1000
    Offfiltx.dll 2006.1200.6212.1000
    Oss.intl.dll 12.0.6211.1000
    Pkmexsph.dll 12.0.6211.1000
    Pkmnpw.dll 12.0.6211.1000
    Microsoft.SharePoint.Portal.dll 12.0.6211.1000
    Query.dll 12.0.6211.1000
    Searchom.dll 12.0.6219.1000
    Searchom.dll 12.0.6219.1000
    Sharepointpub.gac.dll 12.0.6211.1000
    Spsimpph.dll 12.0.6211.1000
    Srchipp.dll 12.0.6211.1000
    Srchpml.dll 12.0.6211.1000
    Thawbrkr.dll 12.0.6211.1000
    Tquery.dll 12.0.6217.1000
    Trklr.dll 1.18.0.0
    Additionally, the following files are installed when you install the Osrchwfewwsp1.msp file.
    A0000001.apx Addcs.apx Addfedl.apx Anlytics.sql
    Cpyfedl.apx Editcs.apx Editrule.apx Edtfedl.apx
    Expfedl.apx Fbaconf.apx Fbaproxy.apx Impfedl.apx
    Mngfedl.apx Mprop.apx Mrulessp.apx Noiseara.txt
    Noiseben.txt Noisebul.txt Noisecat.txt Noisechs.txt
    Noisecht.txt Noisecro.txt Noisedan.txt Noisedeu.txt
    Noiseeng.txt Noiseenu.txt Noiseesn.txt Noisefin.txt
    Noisefra.txt Noisegrc.txt Noiseguj.txt Noiseheb.txt
    Noisehin.txt Noiseice.txt Noiseind.txt Noiseita.txt
    Noisejpn.txt Noisekan.txt Noisekor.txt Noiselat.txt
    Noiselit.txt Noisemal.txt Noisemar.txt Noisemly.txt
    Noiseneu.txt Noisenld.txt Noisenor.txt Noiseplk.txt
    Noisepol.txt Noisepor.txt Noiseptb.txt Noisepun.txt
    Noiserom.txt Noiserus.txt Noisesbc.txt Noisesbl.txt
    Noiseslo.txt Noisesve.txt Noisesvk.txt Noisetam.txt
    Noisetel.txt Noisetha.txt Noisetur.txt Noiseukr.txt
    Noiseurd.txt Oss.cs6mors.lex Oss.csstems.lex Oss.cswf32.lex
    Oss.danlr.lex Oss.grcste.lex Oss.huau.lex Oss.hugu.lex
    Oss.hustem.lex Oss.korwbrkr.lex Oss.search.admin.asmx Oss.search.global.admin.asmx
    Oss.summaryresults.dwp Oss.swpf.summaryresults.dwp Oss.swpf.topanswer.dwp Oss.topanswer.dwp
    Oss.wbdbase.plk Osssearchadmin.helpkeymap.xml Portal.js S2addshr.apx
    S2farm.apx S2mngshr.apx Scssp.apx Sdsgpssp.apx
    Spanishdict.txt Tsara.xml Tsben.xml Tsbul.xml
    Tscat.xml Tschs.xml Tscht.xml Tscro.xml
    Tsdeu.xml Tseng.xml Tsenu.xml Tsesn.xml
    Tsfin.xml Tsfra.xml Tsguj.xml Tsheb.xml
    Tshin.xml Tsice.xml Tsind.xml Tsita.xml
    Tsjpn.xml Tskan.xml Tskor.xml Tslat.xml
    Tslit.xml Tsmal.xml Tsmar.xml Tsmly.xml
    Tsneu.xml Tsnld.xml Tsnor.xml Tsplk.xml
    Tspol.xml Tspor.xml Tsptb.xml Tspun.xml
    Tsrom.xml Tsrus.xml Tssbc.xml Tssbl.xml
    Tsschema.xml Tsslo.xml Tssve.xml Tssvk.xml
    Tstam.xml Tstel.xml Tstha.xml Tstur.xml
    Tsukr.xml Tsurd.xml Uschdssp.apx Vscpsssp.apx
    Vssetssp.apx      
    Osrvwwsp1.msp
    File name File version
    Adodb.dll 7.10.2346.0
    Dbghelp.dll 6.6.7.5
    Microsoft.mshtml.dll 7.0.3300.0
    Microsoft.stdformat.dll 7.0.9466.0
    Msdatasrc.dll 7.0.9466.0
    Microsoft.office.server.dll 12.0.6211.1000
    Microsoft.office.server.native.dll 12.0.6212.1000
    Microsoft.mshtml.dll 7.0.3300.0
    Microsoft.stdformat.dll 7.0.9466.0
    Msdatasrc.dll 7.0.9466.0
    Office.odf 12.0.6211.1000
    Stdole.dll 7.0.9466.0
    Stdole.dll 7.0.9466.0
    Svrsetup.dll 12.0.6219.1000
    Svrsetup.exe 12.0.6217.1000
    Spswfewwsp1.msp
    File name File version
    DocXPageConverter.exe 12.0.6212.1000
    Microsoft.SharePoint.Publishing.dll 12.0.6211.1000
    Microsoft.SharePoint.Portal.dll 12.0.6211.1000
    Microsoft.SharePoint.Publishing.dll 12.0.6211.1000
    Ssocli.dll 12.0.6211.1000
    Ssocli.dll 12.0.6211.1000
    Ssoom.dll 12.0.6211.1000
    Ssoom.dll 12.0.6211.1000
    Ssoperf.dll 12.0.6211.1000
    Ssoprvad.exe 12.0.6211.1000
    Ssosec.dll 12.0.6211.1000
    Ssosec.dll 12.0.6211.1000
    Ssosrv.exe 12.0.6211.1000
    Upgrade.dll 12.0.6211.1000
    Additionally, the following files are installed when you install the Spswfewwsp1.msp file.
    Addbdcapp.aspx Anlytics.sql Bmossext.css Brmossext.css
    Cmossext.css Ctmossext.css Expapp.aspx Gmossext.css
    Jmossext.css Limossext.css Lmossext.css Mossext.css
    Msitehostperson.aspx Newsv3xmlonet.xml Omossext.css Pbb1fil.xml
    Pbbfil.xml Plmossext.css Pmossext.css Portal.js
    Profilesrp.sql Profilup.sql Provfil.xml Provfile.xml
    Reportcenterdoclibschema.xml Rteetbl.asx Rtepued.asx Schema.xml.pubfeap
    Smcmt.asx Smmossext.css V3dwptasksandtoolswp.dwp V3xmlonet.xml
    Vimossext.css Vmossext.css Welcomelayout2.aspx Wmossext.css
    Xlsrvappwwsp1.msp
    File name File version
    Atl80.dll 8.0.50727.762
    Ecscalcserver.dll 12.0.6211.1000
    Ecsinterop.dll 12.0.6211.1000
    Mfc80.dll 8.0.50727.762
    Mfc80chs.dll 8.0.50727.762
    Mfc80cht.dll 8.0.50727.762
    Mfc80deu.dll 8.0.50727.762
    Mfc80enu.dll 8.0.50727.762
    Mfc80esp.dll 8.0.50727.762
    Mfc80fra.dll 8.0.50727.762
    Mfc80ita.dll 8.0.50727.762
    Mfc80jpn.dll 8.0.50727.762
    Mfc80kor.dll 8.0.50727.762
    Mfc80u.dll 8.0.50727.762
    Mfcm80.dll 8.0.50727.762
    Mfcm80u.dll 8.0.50727.762
    Msmdlocal.dll 9.0.3042.0
    Msmgdsrv.dll 9.0.3042.0
    Msolap90.dll 9.0.3042.0
    Msolui90.dll 9.0.3042.0
    Msvcm80.dll 8.0.50727.762
    Msvcp80.dll 8.0.50727.762
    Msvcr80.dll 8.0.50727.762
    Msxml5.dll 5.20.1081.0
    Sql90.xsl Not applicable
    Xlcall32.dll 12.0.6211.1000
    Xlsrv.dll 12.0.6214.1000
    Xlsrv.webservices.api.dll 12.0.6211.1000
    Xmlrw.dll 2.0.3609.0
    Xmlrwbin.dll 2.0.3609.0
    Pjsrvappwwsp1.msp
    File name File version
    Dataedit.dll.x86 12.0.6211.1000
    Microsoft.Office.Project.PI.dll 12.0.6211.1000
    Microsoft.Office.Project.Schema.dll 12.0.6211.1000
    Microsoft.Office.Project.Server.dll 12.0.6218.1000
    Microsoft.Office.Project.Server.Library.dll 12.0.6211.1000
    Microsoft.Office.Project.Server.Upgrade.dll 12.0.6218.1000
    Microsoft.Office.Project.Server.WebService.dll 12.0.6211.1000
    Microsoft.Office.Project.WebProj.dll 12.0.6211.1000
    Microsoft.Office.Project.Server.Queuing.exe 12.0.6211.1000
    Microsoft.Office.Project.Server.Library.dll 12.0.6211.1000
    Additionally, the following files are installed when you install the Osrvmuisp1-en-us.msp file.
    Prjsvr.sql.addpublishsps12.sql Prjsvr.sql.addpubsps12.sql Prjsvr.sql.addpubtab12.sql Prjsvr.sql.addpubvw12.sql
    Prjsvr.sql.addreptab12.sql Prjsvr.sql.addsps12.sql Prjsvr.sql.addversionsps12.sql Prjsvr.sql.addverstab12.sql
    Prjsvr.sql.addworkingsps12.sql Prjsvr.sql.addworksps12.sql Prjsvr.sql.addworktab12.sql Prjsvr.sql.delvw12.sql
    Prjsvr.sql.initrep12.sql      
    Pjsrvwfewwsp1.msp
    File name File version
    Microsoft.Office.Project.Schema.dll 12.0.6211.1000
    Microsoft.Office.Project.Server.Administration.ApplicationPages.dll 12.0.6211.1000
    Microsoft.Office.Project.Server.dll 12.0.6218.1000
    Microsoft.Office.Project.Server.Library.dll 12.0.6211.1000
    Microsoft.Office.Project.Server.PWA.ApplicationPages.dll 12.0.6211.1000
    Microsoft.Office.Project.Server.PWA.dll 12.0.6211.1000
    Microsoft.Office.Project.WebProj.dll 12.0.6211.1000
    Additionally, the following files are installed when you install the Pjsrvwfewwsp1.msp file.
    Psi.isapi.customfieldsdisco.aspx Psi.isapi.customfieldswsdl.aspx Pwa.admin.addmodifycategory.aspx Pwa.admin.calendarsmain.aspx
    Pwa.admin.editcustomfield.aspx Pwa.admin.editglobal.aspx Pwa.admin.treepicker.aspx Pwa.admin.viewsaddmod.aspx
    Pwa.download.aspx Pwa.library.activexviewpart.htc Pwa.library.mspjgrid.ascx Pwa.library.teambuilderpage.js
    Pwa.library.timesheetpart.htc Pwa.library.treepicker.xslt Pwa.pjclient.cab Pwa.resmgr.buildresplanteam.aspx
    Pwa.resmgr.buildteam.aspx Pwa.statusing.addtask.aspx    
    Xlsrvwfewwsp1.msp
    File name File version
    Ewrfind.aspx Not applicable
    Ewrscripts.js Not applicable
    Microsoft.Office.Excel.WebUI.dll 12.0.6211.1000
    Microsoft.Office.Excel.Server.dll 12.0.6211.1000
    Microsoft.Office.Excel.Server.WebServices.dll 12.0.6211.1000
    Xlsrvintl.dll 12.0.6211.1000
    Note The 2007 Microsoft Office servers SP1 32-bit edition package also includes the following .msp files that are included in the 2007 Microsoft Office servers Language Pack SP1 32-bit edition package:
    Osrchmuisp1-en-us.msp
    Spsmuisp1-en-us.msp
    Xlsrvmuisp1-en-us.msp
    The 2007 Microsoft Office servers SP1, 64-bit edition
    Dlcappwwsp1.msp
    File name File version
    Microsoft.office.server.conversions.launcher.exe 12.0.6211.1000
    Microsoft.office.server.conversions.loadbalancer.exe 12.0.6211.1000
    Dlcwwsp1.msp
    File name File version
    Dlc.workflow.routing.dll 12.0.6211.1000
    Edbwwsp1.msp
    File name File version
    Dbghelp.dll 6.6.7.5
    Dw20.exe 12.0.6211.1000
    Dwdcw20.dll 12.0.6211.1000
    Dwtrig20.exe 12.0.6211.1000
    Edb.botservermsgs.dll 4.2.1.2704
    Edb.grooveaccountmgr.dll 4.2.1.2704
    Edb.grooveautoproxy.dll 4.2.1.2704
    Edb.groovebotfacilitator.dll 4.2.1.2704
    Edb.groovebotfactory.dll 4.2.1.2704
    Edb.grooveclean.exe 4.2.1.2704
    Edb.grooveclusterservices.dll 4.2.1.2704
    Edb.groovecommoncomponents.dll 4.2.1.2704
    Edb.groovecomponentconnector.dll 4.2.1.2704
    Edb.groovecomponentupdatecontroller.dll 4.2.1.2704
    Edb.groovecsmviewer.exe 4.2.1.2704
    Edb.groovedocumentsharetool.dll 4.2.1.2704
    Edb.grooveeis.exe 4.2.1.2704
    Edb.grooveintlresource2.dll 4.2.1.2704
    Edb.grooveprojecttoolset.dll 4.2.1.2704
    Edb.grooveresource.dll 4.2.1.2704
    Edb.grooveresourceedb.dll 4.2.1.2704
    Edb.grooveshellextensions.dll 4.2.1.2704
    Edb.groovestoragemgr.dll 4.2.1.2704
    Edb.groovesystemservices.dll 4.2.1.2704
    Edb.grooveuls.dll 12.0.6211.1000
    Edb.grooveutil.dll 4.2.1.2704
    Edb.groovewebplatformservices.dll 4.2.1.2704
    Edb.groovewebservices.dll 4.2.1.2704
    Grooveaudio.dll 4.2.1.2704
    Groovecalendartool.dll 4.2.1.2704
    Groovecommunicationsservices.dll 4.2.1.2704
    Groovecommunicationsstatusandcontrol.dll 4.2.1.2704
    Groovecomponentmgr.dll 4.2.1.2704
    Groovecrypto.dll 4.2.1.2704
    Groovedataviewertool.dll 4.2.1.2704
    Groovefetchservices.dll 4.2.1.2704
    Groovegames.dll 4.2.1.2704
    Groovemisc.dll 4.2.1.2704
    Groovenew.dll 4.2.1.2704
    Groovesketchtool.dll 4.2.1.2704
    Groovesystemmode.dll 4.2.1.2704
    Groovetexttools.dll 4.2.1.2704
    Groovetransceiver.dll 4.2.1.2704
    Grooveuiframework.dll 4.2.1.2704
    Groovewebbrowsertool2.dll 4.2.1.2704
    Installed.resources.xss Not applicable
    Microsoft.office.server.native.dll 12.0.6212.1000
    Msvcm80.dll 8.0.50727.762
    Msvcp80.dll 8.0.50727.762
    Msvcr80.dll 8.0.50727.762
    Msxml5.dll 5.20.1081.0
    Starternotificationdescriptors.xml Not applicable
    Svrsetup.dll 12.0.6219.1000
    Svrsetup.exe 12.0.6217.1000
    Emswwsp1.msp
    File name File version
    Appcode.compiled Not applicable
    Appcode.dll 4.2.1.2703
    Appglobal.asax.compiled Not applicable
    Appglobal.asax.dll 4.2.1.2703
    Atl80.dll 8.0.50727.762
    Auditdbstoredproc.sql Not applicable
    Gmsdbstoredproc.sql Not applicable
    Groovemanagementserver.dll 4.2.1.2705
    Groovepsconfig.exe 12.0.6211.1000
    Groovepsconfigui.exe 12.0.6211.1000
    Mems.dll 4.2.1.2703
    Mfc80.dll 8.0.50727.762
    Mfc80u.dll 8.0.50727.762
    Mfcm80.dll 8.0.50727.762
    Mfcm80u.dll 8.0.50727.762
    Microsoft.groovemanagementserver.ui.controls.dll 4.2.1.2703
    Microsoft.groovemanagementserver.ui.enhancedwebcontrols.dll 4.2.1.2703
    Msvcm80.dll 8.0.50727.762
    Msvcp80.dll 8.0.50727.762
    Msvcr80.dll 8.0.50727.762
    Svrsetup.dll 12.0.6219.1000
    Svrsetup.exe 12.0.6217.1000
    Grswwsp1.msp
    File name File version
    Atl80.dll 8.0.50727.762
    Dbghelp.dll 6.6.7.5
    Dbwritetest.exe 12.0.0.1406
    Dw20.exe 12.0.6211.1000
    Dwdcw20.dll 12.0.6211.1000
    Dwtrig20.exe 12.0.6211.1000
    Ffqbackup.exe 12.0.0.1407
    Ffqrebuild.exe 12.0.0.1407
    Ffqreview.exe 12.0.0.1407
    Groovecrypto.dll 4.2.1.2703
    Groovemisc.dll 4.2.1.2703
    Groovenew.dll 4.2.1.2703
    Grooverelayperfmon.dll 12.0.0.1406
    Groovetracing.exe 12.0.4518.1007
    Grooveuls.dll 12.0.4518.1007
    Grooveutil.dll 4.2.1.2703
    Metabackup.exe 12.0.0.1407
    Msvcm80.dll 8.0.50727.762
    Msvcp80.dll 8.0.50727.762
    Msvcr80.dll 8.0.50727.762
    Relay.exe 12.0.0.1407
    Relaycfg.cpl 12.0.0.1407
    Relaycfgsec.dll 12.0.0.1407
    Relaymsgs.dll 12.0.0.1406
    Rqexport.exe 12.0.0.1407
    Rqimport.exe 12.0.0.1407
    Rqwritetest.exe 12.0.0.1407
    Svrsetup.dll 12.0.6219.1000
    Svrsetup.exe 12.0.6217.1000
    Additionally, the following files are installed when you install the Grswwsp1.msp file.
    Db.archive.exe Db.checkpoint.exe Db.deadlock.exe Db.dump.exe
    Db.load.exe Db.printlog.exe Db.recover.exe Db.stat.exe
    Db.upgrade.exe Db.verify.exe    
    Ifswfewwsp1.msp
    File name File version
    Core.js Not applicable
    Htmlchkr.dll 12.0.6211.1000
    Ifswfe.dll 12.0.6211.1000
    Ifswfepriv.dll 12.0.6211.1000
    Signatureeula.aspx Not applicable
    Osrchappwwsp1.msp
    File name File version
    Bdcconn.dll 12.0.6211.1000
    Chsbrkr.dll 12.0.6211.1000
    Chtbrkr.dll 12.0.6211.1000
    Grclr.dll 1.0.0.13
    Grcste.dll 1.0.0.14
    Huczlr.dll 2.0.4.3
    Korwbrkr.dll 12.0.6211.1000
    Mir.fi.dll 1.0.0.7
    Msgfilt.dll 2006.822.6211.1000
    Mssdmn.exe 12.0.6211.1000
    Mssearch.exe 12.0.6211.1000
    Mssph.dll 12.0.6211.1000
    Offfiltx.dll 2006.1200.6212.1000
    Oss.cswf32.lex Not applicable
    Oss.korwbrkr.lex Not applicable
    Oss.search.admin.asmx Not applicable
    Oss.search.global.admin.asmx Not applicable
    Pkmexsph.dll 12.0.6211.1000
    Spsimpph.dll 12.0.6211.1000
    Srchipp.dll 12.0.6211.1000
    Thawbrkr.dll 12.0.6211.1000
    Trklr.dll 1.18.0.0
    Osrchwfewwsp1.msp
    File name File version
    Bdcconn.dll 12.0.6211.1000
    Chsbrkr.dll 12.0.6211.1000
    Chtbrkr.dll 12.0.6211.1000
    Danlr.dll 1.0.0.16
    Grclr.dll 1.0.0.13
    Grcste.dll 1.0.0.14
    Huczlr.dll 2.0.4.3
    Korwbrkr.dll 12.0.6211.1000
    Lrpolish.dll 1.9.0.0
    Mir.fi.dll 1.0.0.7
    Msgfilt.dll 2006.822.6211.1000
    Msscntrs.dll 12.0.6211.1000
    Mssdmn.exe 12.0.6211.1000
    Mssearch.exe 12.0.6211.1000
    Mssph.dll 12.0.6211.1000
    Mssrch.dll 12.0.6211.1000
    Offfiltx.dll 2006.1200.6212.1000
    Oss.intl.dll 12.0.6211.1000
    Pkmexsph.dll 12.0.6211.1000
    Portal.dll 12.0.6211.1000
    Query.dll 12.0.6211.1000
    Searchom.dll 12.0.6219.1000
    Searchom.dll 12.0.6219.1000
    Sharepointpub.gac.dll 12.0.6211.1000
    Spsimpph.dll 12.0.6211.1000
    Srchipp.dll 12.0.6211.1000
    Srchpml.dll 12.0.6211.1000
    Thawbrkr.dll 12.0.6211.1000
    Tquery.dll 12.0.6217.1000
    Trklr.dll 1.18.0.0
    Additionally, the following files are installed when you install the Osrchwfewwsp1.msp file.
    A0000001.apx Addcs.apx Addfedl.apx Anlytics.sql
    Cformsec.acx Cpyfedl.apx Editcs.apx Editrule.apx
    Edtfedl.apx Expfedl.apx Fbaconf.apx Fbaproxy.apx
    Impfedl.apx Mngfedl.apx Mprop.apx Mrulessp.apx
    Mssdmn.exe Mssearch.exe Noiseara.txt Noiseben.txt
    Noisebul.txt Noisecat.txt Noisechs.txt Noisecht.txt
    Noisecro.txt Noisedan.txt Noisedeu.txt Noiseeng.txt
    Noiseenu.txt Noiseesn.txt Noisefin.txt Noisefra.txt
    Noisegrc.txt Noiseguj.txt Noiseheb.txt Noisehin.txt
    Noiseice.txt Noiseind.txt Noiseita.txt Noisejpn.txt
    Noisekan.txt Noisekor.txt Noiselat.txt Noiselit.txt
    Noisemal.txt Noisemar.txt Noisemly.txt Noiseneu.txt
    Noisenld.txt Noisenor.txt Noiseplk.txt Noisepol.txt
    Noisepor.txt Noiseptb.txt Noisepun.txt Noiserom.txt
    Noiserus.txt Noisesbc.txt Noisesbl.txt Noiseslo.txt
    Noisesve.txt Noisesvk.txt Noisetam.txt Noisetel.txt
    Noisetha.txt Noisetur.txt Noiseukr.txt Noiseurd.txt
    Oss.cs6mors.lex Oss.csstems.lex Oss.cswf32.lex Oss.danlr.lex
    Oss.grcste.lex Oss.huau.lex Oss.hugu.lex Oss.hustem.lex
    Oss.korwbrkr.lex Oss.search.admin.asmx Oss.search.global.admin.asmx Oss.summaryresults.dwp
    Oss.swpf.summaryresults.dwp Oss.swpf.topanswer.dwp Oss.topanswer.dwp Oss.wbdbase.plk
    Osssearchadmin.helpkeymap.xml Portal.js S2addshr.apx S2farm.apx
    S2mngshr.apx Scssp.apx Sdsgpssp.apx Spanishdict.txt
    Tsara.xml Tsben.xml Tsbul.xml Tscat.xml
    Tschs.xml Tscht.xml Tscro.xml Tsdeu.xml
    Tseng.xml Tsenu.xml Tsesn.xml Tsfin.xml
    Tsfra.xml Tsguj.xml Tsheb.xml Tshin.xml
    Tsice.xml Tsind.xml Tsita.xml Tsjpn.xml
    Tskan.xml Tskor.xml Tslat.xml Tslit.xml
    Tsmal.xml Tsmar.xml Tsmly.xml Tsneu.xml
    Tsnld.xml Tsnor.xml Tsplk.xml Tspol.xml
    Tspor.xml Tsptb.xml Tspun.xml Tsrom.xml
    Tsrus.xml Tssbc.xml Tssbl.xml Tsschema.xml
    Tsslo.xml Tssve.xml Tssvk.xml Tstam.xml
    Tstel.xml Tstha.xml Tstur.xml Tsukr.xml
    Tsurd.xml Uschdssp.apx Vscpsssp.apx Vssetssp.apx
    Osrvwwsp1.msp
    File name File version
    Adodb.dll 7.10.2346.0
    Dbghelp.dll 6.6.7.5
    Microsoft.mshtml.dll 7.0.3300.0
    Microsoft.stdformat.dll 7.0.9466.0
    Msdatasrc.dll 7.0.9466.0
    Microsoft.office.server.dll 12.0.6211.1000
    Microsoft.office.server.native.dll 12.0.6212.1000
    Microsoft.mshtml.dll 7.0.3300.0
    Microsoft.stdformat.dll 7.0.9466.0
    Msdatasrc.dll 7.0.9466.0
    Office.odf 12.0.6211.1000
    Stdole.dll 7.0.9466.0
    Stdole.dll 7.0.9466.0
    Svrsetup.dll 12.0.6219.1000
    Svrsetup.exe 12.0.6217.1000
    Pjsrvappwwsp1.msp
    File name File version
    Dataedit.dll 12.0.6211.1000
    Microsoft.office.project.pi.dll 12.0.6211.1000
    Microsoft.office.project.schema.dll 12.0.6211.1000
    Microsoft.office.project.server.dll 12.0.6218.1000
    Microsoft.office.project.server.library.dll 12.0.6211.1000
    Microsoft.office.project.server.upgrade.dll 12.0.6218.1000
    Microsoft.office.project.server.webservice.dll 12.0.6211.1000
    Microsoft.office.project.webproj.dll 12.0.6211.1000
    Mspsqservice.exe 12.0.6211.1000
    Prjsvr.sql.addpublishsps12.sql Not applicable
    Prjsvr.sql.addpubsps12.sql Not applicable
    Prjsvr.sql.addpubtab12.sql Not applicable
    Prjsvr.sql.addpubvw12.sql Not applicable
    Prjsvr.sql.addreptab12.sql Not applicable
    Prjsvr.sql.addsps12.sql Not applicable
    Prjsvr.sql.addversionsps12.sql Not applicable
    Prjsvr.sql.addverstab12.sql Not applicable
    Prjsvr.sql.addworkingsps12.sql Not applicable
    Prjsvr.sql.addworksps12.sql Not applicable
    Prjsvr.sql.addworktab12.sql Not applicable
    Prjsvr.sql.delvw12.sql Not applicable
    Prjsvr.sql.initrep12.sql Not applicable
    Sdk.microsoft.office.project.server.library.dll 12.0.6211.1000
    Additionally, the following files are installed when you install the Pjsrvappwwsp1.msp file.
    Prjsvr.sql.addpublishsps12.sql Prjsvr.sql.addpubsps12.sql Prjsvr.sql.addpubtab12.sql Prjsvr.sql.addpubvw12.sql
    Prjsvr.sql.addreptab12.sql Prjsvr.sql.addsps12.sql Prjsvr.sql.addversionsps12.sql Prjsvr.sql.addverstab12.sql
    Prjsvr.sql.addworkingsps12.sql Prjsvr.sql.addworksps12.sql Prjsvr.sql.addworktab12.sql Prjsvr.sql.delvw12.sql
    Prjsvr.sql.initrep12.sql      
    Pjsrvwfewwsp1.msp
    File name File version
    Microsoft.office.project.schema.dll 12.0.6211.1000
    Microsoft.office.project.server.administration.applicationpages.dll 12.0.6211.1000
    Microsoft.office.project.server.dll 12.0.6218.1000
    Microsoft.office.project.server.library.dll 12.0.6211.1000
    Microsoft.office.project.server.pwa.applicationpages.dll 12.0.6211.1000
    Microsoft.office.project.server.pwa.dll 12.0.6211.1000
    Microsoft.office.project.webproj.dll 12.0.6211.1000
    Additionally, the following files are installed when you install the Pjsrvwfewwsp1.msp file.
    Psi.isapi.customfieldsdisco.aspx Psi.isapi.customfieldswsdl.aspx Pwa.admin.addmodifycategory.aspx Pwa.admin.calendarsmain.aspx
    Pwa.admin.editcustomfield.aspx Pwa.admin.editglobal.aspx Pwa.admin.treepicker.aspx Pwa.admin.viewsaddmod.aspx
    Pwa.download.aspx Pwa.library.activexviewpart.htc Pwa.library.mspjgrid.ascx Pwa.library.teambuilderpage.js
    Pwa.library.timesheetpart.htc Pwa.library.treepicker.xslt Pwa.pjclient.cab Pwa.resmgr.buildresplanteam.aspx
    Pwa.resmgr.buildteam.aspx Pwa.statusing.addtask.aspx    
    Spswfewwsp1.msp
    File name File version
    Docxpageconverter.exe 12.0.6212.1000
    Microsoft.sharepoint.publishing.dll 12.0.6211.1000
    Portal.dll 12.0.6211.1000
    Sharepointpub.dll 12.0.6211.1000
    Sharepointpub.gac.dll 12.0.6211.1000
    Ssocli.dll 12.0.6211.1000
    Ssoom.dll 12.0.6211.1000
    Ssoperf.dll 12.0.6211.1000
    Ssoprvad.exe 12.0.6211.1000
    Ssosec.dll 12.0.6211.1000
    Ssosrv.exe 12.0.6211.1000
    Upgrade.dll 12.0.6211.1000
    Additionally, the following files are installed when you install the Spswfewwsp1.msp file.
    Addbdcapp.aspx Anlytics.sql Bmossext.css Brmossext.css
    Cmossext.css Ctmossext.css Expapp.aspx Gmossext.css
    Jmossext.css Limossext.css Lmossext.css Mossext.css
    Msitehostperson.aspx Newsv3xmlonet.xml Omossext.css Pbb1fil.xml
    Pbbfil.xml Plmossext.css Pmossext.css Portal.js
    Profilesrp.sql Profilup.sql Provfil.xml Provfile.xml
    Reportcenterdoclibschema.xml Rteetbl.asx Rtepued.asx Schema.xml.pubfeap
    Smcmt.asx Smmossext.css V3dwptasksandtoolswp.dwp V3xmlonet.xml
    Vimossext.css Vmossext.css Welcomelayout2.aspx Wmossext.css
    Xlsrvappwwsp1.msp
    File name File version
    Ecscalcserver.dll 12.0.6211.1000
    Ecsinterop.dll 12.0.6211.1000
    Mfc80.dll 8.0.50727.762
    Mfc80chs.dll 8.0.50727.762
    Mfc80cht.dll 8.0.50727.762
    Mfc80deu.dll 8.0.50727.762
    Mfc80enu.dll 8.0.50727.762
    Mfc80esp.dll 8.0.50727.762
    Mfc80fra.dll 8.0.50727.762
    Mfc80ita.dll 8.0.50727.762
    Mfc80jpn.dll 8.0.50727.762
    Mfc80kor.dll 8.0.50727.762
    Mfc80u.dll 8.0.50727.762
    Mfcm80.dll 8.0.50727.762
    Mfcm80u.dll 8.0.50727.762
    Msmdlocal.dll 9.0.3042.0
    Msmdlocal.dll 9.0.3042.0
    Msmgdsrv.dll 9.0.3042.0
    Msmgdsrv.dll 9.0.3042.0
    Msolap90.dll 9.0.3042.0
    Msolap90.dll 9.0.3042.0
    Msolui90.dll 9.0.3042.0
    Msolui90.dll 9.0.3042.0
    Msvcm80.dll 8.0.50727.762
    Msvcp80.dll 8.0.50727.762
    Msvcr80.dll 8.0.50727.762
    Msxml5.dll 5.20.1081.0
    Sql90.xsl Not applicable
    Sql90.xsl Not applicable
    Xlsrv.dll 12.0.6214.1000
    Xlsrv.webservices.api.dll 12.0.6211.1000
    Xmlrw.dll 2.0.3609.0
    Xmlrw.dll 2.0.3609.0
    Xmlrwbin.dll 2.0.3609.0
    Xmlrwbin.dll 2.0.3609.0
    Xlsrvwfewwsp1.msp
    File name File version
    Ewrfind.aspx Not applicable
    Ewrscripts.js Not applicable
    Microsoft.office.excel.webui.dll 12.0.6211.1000
    Msoxlsrv.dll 12.0.6211.1000
    Msoxlsrv.webservices.dll 12.0.6211.1000
    Xlsrvintl.dll 12.0.6211.1000
    Note The 2007 Microsoft Office servers SP1, 64-bit edition package also includes the following .msp files that are included in the 2007 Microsoft Office servers Language Pack SP1, 64-bit edition package:
    Osrchmuisp1-en-us.msp
    Spsmuisp1-en-us.msp
    Xlsrvmuisp1-en-us.msp
    2007 Microsoft Office servers Language Pack SP1, 32-bit edition
    Osrchmuisp1-en-us.msp
    File name File version
    Cssportalstyle.css Not applicable
    Mssmsg.dll 12.0.6211.1000
    Notesstp.exe 12.0.6214.1000
    Oss.search.data.sql Not applicable
    Microsoft.Office.Server.Search.Intl.Resources.dll 12.0.6211.1000
    Oss.search.sql Not applicable
    Spsmuisp1-en-us.msp
    File name File version
    Cssportalstyle.css Not applicable
    Editmenu.js Not applicable
    Htmledtr.js Not applicable
    Ptdlg.js Not applicable
    Sm.js Not applicable
    Xlsrvmuisp1-en-us.msp
    File name File version
    Msmdsrv.rll 9.0.3042.0
    Msolui90.rll 9.0.1399.0
    The 2007 Microsoft Office servers Language Pack SP1, 64-bit edition
    Osrchmuisp1-en-us.msp
    File name File version
    Cssportalstyle.css Not applicable
    Mssmsg.dll 12.0.6211.1000
    Oss.search.data.sql Not applicable
    Oss.search.intlr.dll 12.0.6211.1000
    Oss.search.sql Not applicable
    Spsmuisp1-en-us.msp
    File name File version
    Cssportalstyle.css Not applicable
    Editmenu.js Not applicable
    Htmledtr.js Not applicable
    Ptdlg.js Not applicable
    Sm.js Not applicable
    Xlsrvmuisp1-en-us.msp
    File name File version
    Msmdsrv.rll 9.0.3042.0
    Msmdsrv.rll 9.0.3042.0
    Msolui90.rll 9.0.1399.0
    Msolui90.rll 9.0.1399.0
    May 20

    新增客製化欄位至文件庫

    Note: Don't forget to make backup copies of the files you modify in this tip.

    1. Open schema.xml file for the document library that is located in the following path:

    LocalDrive:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\DocumentLibrary\DocLib

    2. Locate <Fields> tag and add following field inside the <Fields> tag:

    <Field ID="{20487AC7-D872-4B10-ACB8-CF3002C29687}" Type="Text" Name="MyField" ShowInNewForm="FALSE" ShowInFileDlg="FALSE" DisplayName="$Resources:core,MyField;" Filterable="TRUE" Sortable="TRUE" Sealed="TRUE"  SourceID="http://schemas.microsoft.com/sharepoint/v3" StaticName="MyField"><!-- _locID@DisplayName="camlid2" _locComment="  " -->
          </Field>

    Field ID should be unique. Run Select NewID() in SQL Query Analyzer to get a new GUID and use it as the field ID.

    3. Open core.en-US.resx file located in the following path:

    LocalDrive:\Program Files\Common Files\Microsoft Shared\web server extensions\12\Resources

    4. Locate following tag in the file:

      <!-- shared resources -->

    and add following lines in this section (shared resouces section)

    <data name="MyField">
        <value>My Demo Field</value>
      </data>

    5. Save the changes and reset IIS. Next time when you will create a document library, this field will be a part of your document libray.

    ssahmed

    Make the "Overwrite existing file" check box to be unselected by default in MOSS 2007

     

    One of our customers wanted a way to *uncheck* the “Overwrite existing file” option by default. For better understanding, here’s what it is:

    1. Open a team site in WSS V3.

    2. Navigate to a document library.

    3. Choose the *Upload* option to upload a document.

    4. Here you'll see that the "Overwrite existing files" option is selected (*checked*) by default.

    Well, if you have to do this in WSS V2, the procedure is pretty lengthy…

    1. Open <Install Drive>:\Program Files\Common Files\Microsoft Shared\web server extensions\60\TEMPLATE\1033\SPSTOC\LISTS\DOCLIB

    2. After backing up the Schema.xml file, pop it open and look for the below tag:

    1. <INPUT type=hidden name="putopts" id=putopts value="true">

    3. Change value="true" to value="false"

    4. And then find the below line in the same file (~ 7-8 lines down the line):

    1. <INPUT TYPE=CHECKBOX name="overwrite" id=overwrite value="true" CHECKED DEFANGED_Onclick="setputopts()" tabindex=1 title="]]><![CDATA[Overwrite]]><![CDATA[">

    5. Delete the word CHECKED from the above line.

    6. Save the Schema.xml file.

    After an IISRESET, the “Overwrite existing file” option should be unchecked by default for all document libraries.

    In MOSS 2007/WSS V3, however, to do the above is quite simple. All that we need to do is to make a small modification to the *Upload.aspx* file located under: <Install Drive>: \Program Files\Common Files\Microsoft Shared\web server extensions\12\template\layouts.

    Open the upload.aspx file and look for the following tag:

    <asp:CheckBox id=”OverwriteSingle” Checked=”true” Text=”<%$Resources:wss,upload_document_overwrite_file%>” runat=”server” />

    Change Checked=”true” to Checked=”false”. Really simple indeed isn’t it? Due to the fact that WSS V3 & MOSS 2007 is tightly integrated with ASP.NET 2.0 framework, most of such functionality is controlled through application pages instead of schema.xml files as in the previous version.

    Well, if there’s a requirement for such cosmetic changes, you could look out for ASPX files. However, PLEASE NOTE: modifying any OOB (Out Of the Box) files is unsupported, so it’d be a good idea to keep a backup of the files that needs modification. It’s also a good idea to keep a backup of the *modified* files, just in case you don’t miss the customizations if those files were to be overwritten by future patches.

    Published Sunday, April 01, 2007 11:39 PM by sridhara

    如何將 Survey 中的[匯出至 Excel]功能取消

    Add the following javascript snippet to the survey page (using FrontPage).  This causes the 'Export results to spreadsheet' button to not appear...

    <script language=javascript>

       theExport = diidIOExportToSpreadsheet[0];
       while (theExport.tagName != 'TABLE')
            theExport= theExport.parentNode;
       theExport=theExport.parentNode;
       theExport.style.display='none';
       theExport.nextSibling.style.display='none';

    </script>

    From Mauro Cardarelli Try It...

    May 18

    大陸刀郎-㊣◆別說我的眼淚你無所謂-〔腰壽雞好聽〕

    一个人在这个夜里
    孤单得难以入睡
    真的想找个人来陪
    不愿意一个人喝醉
    醉了以后就会流泪
    数着你给的伤悲
    为什么你总让我憔悴
    别说我的眼睛你无所谓
    看我流泪你头也不回
    哭过了泪干了心变成灰
    我想要的美你还不想给
    伤了的我的心怎去面对
    爱给了你我不后悔
    只希望你给我一次机会
    让我去追让我去飞
    毕竟爱过的心需要安慰
    需要你安慰

    無題(鄭源: 愛海滔滔) 歌詞

    試著去努力 鼓起勇氣放棄你
    總是不爭氣 沒有這麼快學會安靜
    就連眼淚時刻在提醒 根本無法放得下你
    漆黑的夜晚 還是找到了我 排山倒海來襲

    (#)一定是我不夠好 所以你才想要逃
    逃到天涯和海角 躲在別人的懷抱
    你能不能不管過的好不好 不要故意躲開不讓我知道

    (△)只要你過得很好 什麼都已不重要
    我不會故意打擾 更不會讓你煩惱
    我每一夜 不管你知不知道
    傻傻流著眼淚默默地祈禱 希望你過得好

    Repeat *,#,△

    總有一天你會看到 愛如海掀起驚天巨滔
    我會以無堅不摧的力量 讓你知道
    Repeat #,△

    無題(胡楊林: 香水有毒) 歌詞

    演唱:胡楊林
    詞曲:陳超
    編曲:江建民

    我曾經愛過這樣一個男人 他說我是世上最美的女人
    我為他保留著那一份天真 關上愛別人的門
    也是這個被我深愛的男人 把我變成世上最笨的女人
    他說的每句話我都會當真 他說最愛我的唇
    我的要求並不高 待我像從前一樣好 可是有一天你說了同樣的話
    把別人擁入懷抱

    你身上有她的香水味 是我鼻子犯的罪 不該嗅到她的美 擦掉一切陪你睡 你身上有她的香水味
    是你賜給的自卑 你要的愛太完美 我永遠都學不會