SCCM 2012 - Hardware Inventory Registry Import not working - Windows in the name of the Registry key

I downloaded the Reg to MOF tool and compiled some of our custom Registry Keys which worked fine. There was particular Key that didn't work and after some testing and messing around I realized why it isn't working:
The key I am using is: HKLM\Software\MyCompanyWindows
Because the key has the name Windows in it, it fails to import. I get the generic check the formatting for your MOF file error.
The MOF file you tried to import could not be compiled. Ensure that the MOF file contains valid data. You can use the command line mofcomp utility to test the data.
But if I run a MOFCOMP against the MOF I am trying to import it checks the syntax successfully.
If I change the key to MyCompanyWin or MyCompanyW it imports with no problem.
We have rolled out this key to almost every device in our organization and connected it to other inventory agents so there is no possibility of changing the key.
Is there any way to disable the validation check that SCCM is performing?

Hi,
If possible, could you please upload the MOF file to SkyDrive?
Best Regards,
Joyce Li
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • SCCM 2012 "hardware inventory classes" for AppV?

    Hi, I would like to get a better view what App-V application issue we have on App-V 4.6.2 in an usercentric deployment senrio
    I also see that SCCM 2012 "hardware inventory classes" "Appv Client Applications" is not set and not all is activated under "Virtual Applications".
    I also would like to our support to get an better view if an user call an say it dont get an App-V 4.62 required deployment.  
    So what "hardware inventory classes" do I need to activate to get App-V deployment /and launch status.
    /SaiTech

    Are you saying the class exists in SCCM 2012 for you but not applied to all of your virtual applications or that there and can't be applied or that the option isn't in SCCM for you at all?
    PLEASE MARK ANY ANSWERS TO HELP OTHERS Blog:
    rorymon.com Twitter: @Rorymon

  • Membership rules does not work with UDF column name having the max length

    Found a bug in OIM .
    Membership rules does not work with UDF column name having the maximum length
    Steps to Reproduce
    1.Create a UDF having max column name length for eg UDF_USR_PERSONAL_SUB_DOMAIN_CO (lable = Personal Code)
    2. Create a simple Rule like Personal Code = 7000
    3. Assign this Rule as a member ship rule of a Group.
    4. Create a user with Personal Code = 7000.
    5. User doesnot get the group membership.
    Thanks
    Suren

    Yes , i verified logs as well .
    If you just decrease the column name length , w/o making change to any other attributes , it starts working ..
    Thanks
    Suren

  • SCCM 2012 Hardware Inventory - Custom Inventory Class ( to Include a registry information in to HW Inv)

    Hi,
     I am trying to include information from a registry into SCCM HW Inventory, I would need some help in extending the HW inventory.
    I have followed one of the blog which says that the change needs to be done on both Configuration.mof and also import the .mof in "Default Client Settings".
    In Microsoft documentation I see an option to just import a .mof file, I did follow the option of importing the .mof into HW inventory and it was imported without any error (I used a mofcomp -check to compile the code)
    Result:
    I see following errors in the InventoryAgent.log which are related to the class that I imported and the information or the fields are not yet available in the resource explorer
    =================================================
    Invalid Query for class abcd: 80041017, will retry to remove invalid properties
    Collection-Retry:Ignore invalid property DeviceType
    =================================================
    Reference I used :
    http://technet.microsoft.com/en-us/library/gg712290.aspx
    http://schadda.blogspot.com/2012/02/sccm-2012-customize-extend-hardware.html

    Just to add to John's comment, I did up a blog post on how to use Regkeytomof to.
    http://be.enhansoft.com/post/2014/02/13/How-to-Use-RegKeyToMof.aspx
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • SCCM 2012 - Hardware Inventory - Dynamic Registry Key Inventory

    Hi all,
    I am trying to inventory a set of registry values based upon a dynamic registry key. The  application is called ACME and different versions of it exist on all clients. For example:
    Some clients have:
    HKLM\Software\ACME\5.0.1
    While others have:
    HKLM\Software\ACME\5.0.2
    While others have:
    HKLM\Software\ACME\5.0.3
    The common denominator is that under the version key, all of the subkeys are consistent and the same.
    The two values I am looking for are "LastUser" and "LastExecuted" which reside under the version key.
    HKLM
    ------> Software
    --------------------> ACME
    ------------------------------>5.0.1
    --------------------------------------> LastUser & LastExecuted
    So i basically want to do a dynamic lookup for the first child key under "ACME".
    I have been using RegKeyToMOF but I am unable to get the data populated into the database. The configuration.mof file compiles successfully (as can be seen in dataldr.log).
    Below are the configs I am using. Can anyone shed some light as to why its not populating anything in the DB?
    #pragma namespace ("\\\\.\\root\\cimv2")
    #pragma deleteclass("ACME", NOFAIL)
    [dynamic, provider("RegProv"), ClassContext("Local|HKEY_LOCAL_MACHINE\\SOFTWARE\\ACME")]
    Class ACME
    [key] string KeyName;
    [PropertyContext("LastUser")] String LastUser;
    [PropertyContext("LastExecuted")] String LastExecuted;
    #pragma namespace ("\\\\.\\root\\cimv2\\SMS")
    #pragma deleteclass("ACME", NOFAIL)
    [SMS_Report(TRUE),SMS_Group_Name("ACME"),SMS_Class_ID("ACME")]
    Class ACME: SMS_Class_Template
    [SMS_Report(TRUE),key] string KeyName;
    [SMS_Report(TRUE)] String LastUser;
    [SMS_Report(TRUE)] String LastExecuted;
    From the client when it hits HINV cycle
    Collection: Namespace = \\.\root\cimv2; Query = SELECT __CLASS, __PATH, __RELPATH, KeyName, LastExecuted, LastUser FROM ACME; Timeout = 600 secs.
    TIA!

    You have to specify the full path in the MOF to collect the data. I have an example of how you can embed a WMI trigger and a vbscript into a MOF file that will populate any information you want from the registry into a cimv2 class, but that may actually
    be more than you really need. Why don't you just inventory each version? It is not as clean, but will be easier.
    example of Acme 5.0.1:
    #pragma namespace ("\\\\.\\root\\cimv2")
    #pragma deleteclass("ACME501", NOFAIL)
    [dynamic, provider("RegProv"), ClassContext("Local|HKEY_LOCAL_MACHINE\\SOFTWARE\\ACME\\5.0.1")]
    Class ACME501
    [key] string KeyName;
    [PropertyContext("LastUser")] String LastUser;
    [PropertyContext("LastExecuted")] String LastExecuted;

  • SCCM 2012 hardware Inventory

    I want my
    Inventory for Printers and Scanner (USB or Network Model), network devices such as Switches and router and any devices attached to POS terminals such as PDT, Monitor, and Keyboard. Can SCCM 2012 R2 can do this.
    How to configure this feature if SCCM 2012 can do 
    Rgds, SSJE

    ConfigMgr can run a network discovery, however the information you will get back on the objects will be limited to IP address, hostname and mac address. Check in the discover methods in the Administation workspace.
    You can extend the hardware classes to gather more information on printers - some info here
    http://www.74k.org/find-printer-information-in-sccm-2012
    You already get monitor details in ConfigMgr. This blog gives you some info on how to get a little extra from the EDID data. http://exar.ch/collecting-monitor-serial-numbers-with-sccm/
    Cheers
    Paul | sccmentor.wordpress.com

  • SCCM 2012 Primary Site Recovery - Packages not working

    I recently had to recover my Primary Site due to system crashes with blue screens on a daily basis. I was running ConfigMgr 2012 SP CU 3 and as part of the process I migrated from WS2008 R2 to WS2012 R2.
    After many hours of perusing the web, I found the solutions to deal with the common site recovery issues such as SSL certs, and the content validation due to an empty ContentLib folder. I also had the issue with the update source where it listed the old
    WSUS 3.2 server and the new one so the Site GUID was also updated.
    The issue I am currently experiencing is that packages new or old including software update packages are not working. When using the script by Peter VanWoulde it lists the Deployment State as Error. I have tried redistributing them, valdiating the content,
    removing distribution points, adding in new distribution points and even recreating some of the smaller packages to test but nothing is working.
    Application deployments are working without issues.
    This is the tail end of the WindowsUpdate.log file
    2013-11-20 22:03:27:281 1632 a84 COMAPI >>--  RESUMED  -- COMAPI: Search [ClientId = CcmExec]
    2013-11-20 22:03:28:098 1632 a84 COMAPI   - Updates found = 176
    2013-11-20 22:03:28:098 1632 a84 COMAPI ---------
    2013-11-20 22:03:28:098 1632 a84 COMAPI --  END  --  COMAPI: Search [ClientId = CcmExec]
    2013-11-20 22:03:28:098 1632 a84 COMAPI -------------
    2013-11-20 22:03:32:139 1020 980 Report CWERReporter finishing event handling. (00000000)
    This is the UpdatesDeployment.log file
    Assignment {FD1118D2-563C-44D4-99DB-0CBE29C5C01A} has total CI = 432 UpdatesDeploymentAgent 21/11/2013 8:31:14 AM 4572 (0x11DC)
    Deadline received for assignment ({FD1118D2-563C-44D4-99DB-0CBE29C5C01A}) UpdatesDeploymentAgent 21/11/2013 8:31:14 AM 4572 (0x11DC)
    Detection job ({F5229872-7A7E-4692-B709-63989F708AF0}) started for assignment ({FD1118D2-563C-44D4-99DB-0CBE29C5C01A}) UpdatesDeploymentAgent 21/11/2013 8:31:14 AM 4572 (0x11DC)
    Progress received for assignment ({FD1118D2-563C-44D4-99DB-0CBE29C5C01A}) UpdatesDeploymentAgent 21/11/2013 8:31:26 AM 4572 (0x11DC)
    EnumerateUpdates for action (UpdateActionInstall) - Total actionable updates = 0 UpdatesDeploymentAgent 21/11/2013 8:47:50 AM 3588 (0x0E04)
    EnumerateUpdates for action (UpdateActionInstall) - Total actionable updates = 0 UpdatesDeploymentAgent 21/11/2013 8:47:51 AM 3588 (0x0E04)
    EnumerateUpdates for action (UpdateActionInstall) - Total actionable updates = 0 UpdatesDeploymentAgent 21/11/2013 8:47:55 AM 3588 (0x0E04)
    EnumerateUpdates for action (UpdateActionInstall) - Total actionable updates = 0 UpdatesDeploymentAgent 21/11/2013 8:47:55 AM 2908 (0x0B5C)
    At this point I am running out of ideas of where to look.

    Hi Xin,
    Sorry for not responding earlier but I did recover the site using the guidelines in the following article Backup and Recovery in Configuration Manager,
    however there were a few issues. 
    I did not have a ContentLib backup so all the content had to be redistributed and validated before that worked. None of my packages new or old would work. I eventually found an article from a forum member who also initiated a Site Reset as part of their
    recovery process and had no issues.
    So it seems that any packages are still not working and i think I narrowed it down.
    For some reason even though my DP and MP are all set for HTTPS, it is trying to access the HTTP path for SMS_DP_SMSPKG$. I am using PKI certs so this is the correct path but it should be HTTPS.
    Excerpt from log.
    Retrying DoUpdateSourceListAll task SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)
    Product {16A45552-A143-4EE6-8CA4-8D95FB5EEB7E} is installed for user  SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)
    Adding 2 local DPs and 0 remote DPs for product {16A45552-A143-4EE6-8CA4-8D95FB5EEB7E} SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)
    Adding install source C:\Windows\ccmcache\5l\ to source list for product {16A45552-A143-4EE6-8CA4-8D95FB5EEB7E} SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)
    UpdateURLWithTransportSettings(): OLD URL - http://xxxxx.com/sms_dp_smspkg$/p01000ae SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)
    UpdateURLWithTransportSettings(): HTTP requested but client settings prohibit it. SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)
    Failed source list update for product {16A45552-A143-4EE6-8CA4-8D95FB5EEB7E}, error 87d00226 SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)
    DoUpdateSourceListAll task failed, error code 87d00226 SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)
    Source list update task failed, will be retried after 3600 seconds SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)
    MSI update source list task finished successfully SrcUpdateMgr 09/12/2013 2:26:51 PM 3140 (0x0C44)

  • SCCM 2012 - Automatic User Device affinity - Not Working

    Hi,
    I need to enable the Automatic User Device affinity.
    Have enabled following two group policy settings:
    Audit account logon events
    Audit logon events
    In client settings User and Device Affinity
    following is enabled:
    User device affinity threshold (120 minutes)
    User device affinity threshold (2 days)
    Automatically configure user device affinity from usage data – True
    However even after 2 days there is no user device relationship getting build.
    Is there anything more required to be done?
    Any logs or links to be referred for troubleshooting?
    Regards,
    Milind Dhuri.

    Hi,
    Please post this in SCCM 2012 forum.
    tx.

  • SCCM 2012 R2 - fresh install PXE not working

    Hi there.
    Fresh install.
    Booting from PXE returns an error: Configuration Manager is looking for policy :(
    Done a lot of googlin so far, nothing helps.
    SMSPXELOGS:
    00:50:56:A8:31:3A, 8D662842-2689-4683-6652-2C8F574F7B8A: No boot action. Rejected.
    00:50:56:A8:31:3A, 8D662842-2689-4683-6652-2C8F574F7B8A: Not serviced.
    Client lookup reply: <ClientIDReply><Identification Unknown="0" ItemKey="0" ServerName=""><Machine><ClientID/><NetbiosName/></Machine></Identification></ClientIDReply>
    00:50:56:A8:31:3A, 8D662842-2689-4683-6652-2C8F574F7B8A: device is not in the database.
    Getting boot action for unknown machine: item key: 2046820353
    Client boot action reply: <ClientIDReply><Identification Unknown="0" ItemKey="2046820353" ServerName=""><Machine><ClientID/><NetbiosName/></Machine></Identification><PXEBootAction
    LastPXEAdvertisementID="" LastPXEAdvertisementTime="" OfferID="" OfferIDTime="" PkgID="" PackageVersion="" PackagePath="" BootImageID="" Mandatory=""/></ClientIDReply>
    00:50:56:A8:31:3A, 8D662842-2689-4683-6652-2C8F574F7B8A: no advertisements found
    bostjanc

    00:50:56:A8:31:3A, 8D662842-2689-4683-6652-2C8F574F7B8A: no advertisements found
    This is an Unknown computer but no advertisements have been found. Have you deployed a task sequence to Unknown Computers?
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • AWI (Auth Workstation Importing) not working

    Hi,
    we are experiencing a really strange behavior of our ZDM 6.5SP2 AWI service; we get the error in zenwsimp.log
    Mar 5, 2008 5:13:29 PM Politica_Import_Remove_CCRTV:General:Importar desde la estacin.BORA-NCS.SRV_CENTRAL.CCRTV
    Mar 5, 2008 5:13:29 PM Version = ZfD4
    Mar 5, 2008 5:13:29 PM User name =
    Mar 5, 2008 5:13:29 PM IPX address =
    Mar 5, 2008 5:13:29 PM IP address = 172.19.110.12
    Mar 5, 2008 5:13:29 PM Subnet mask = 255.255.0.0
    Mar 5, 2008 5:13:29 PM DNS name = pc040023899.ad-ccrtv.local
    Mar 5, 2008 5:13:29 PM Computer name = PC040023899
    Mar 5, 2008 5:13:29 PM Server name = TRAMUNTANA
    Mar 5, 2008 5:13:29 PM OS = WINXP (5.1 Service Pack 2)
    Mar 5, 2008 5:13:29 PM CPU = PENTIUM III
    Mar 5, 2008 5:13:29 PM MAC address = 00:14:38:08:9D:B8
    Mar 5, 2008 5:13:29 PM Tree =
    Mar 5, 2008 5:13:29 PM User context =
    Mar 5, 2008 5:13:29 PM Login count = 0
    Mar 5, 2008 5:13:29 PM A user name is required to create the workstation according to policy: Politica_Import_Remove_CCRTV:General:Importar desde la estacin.BORA-NCS.SRV_CENTRAL.CCRTV
    Mar 5, 2008 5:13:29 PM Connection closed: /172.19.110.12:1062
    the server AWI policy defined (Politica_Import_Remove_CCRTV) says to put the newly created workstation into the user container, that's why uses the user to locate the destination container.
    What I've been observing is that the process to automatically create the workstation runs before the user writes his login/password (I suppose the process is initiated by the Workstation Manager), so no username is still defined !!!! (as you can see in the log file, in the line under "Version=zfd4", "username=")
    Why the Workstation Manager launches the process in the AWI server BEFORE the user logins??????
    Some week ago, once the user got logged, without automatically creating the workstation object, if we run "zwsreg", then the workstation was rightly created. That's was our salvation. Unfortunately, now even this method is not working ...
    I had the intuition (now discarded) that the error was in the ZDM 6.5SP2 AWI server; so I've installed a new ZDM 7SP1 server, and a new AWI policy. But the results were the same. With a ZDM 6.5sp2 agent in the workstation, or a ZDM 7sp1 agent. It doesnt matter.
    So it seems the problem is on the eDir 8.7.3 tree, or maybe on the workstation, but haven't done any important changes in both elements before the problem appeared.
    Another thing I've noted is that the login count doesn't get incremented !!!!
    I've followed the TID 10056909 "Automatic Workstation Import/Removal Errors and Suggested Remedies", and the TID 10074993 "Unable to import workstations to User's Container"; the version of the ZENPOL32.DLL is 08/09/2005 ... I've re-created several times the AWI policy.
    Any idea ????
    DATA :
    server : NW 6.5 SP6, with ZDM 6.5SP2
    clients : Windows XP SP2, with NW Client 4.91SP1, agent ZDM 6.5SP2
    We are using Universal Password
    I hope someone experienced the same problem and could help us ...
    Best regards,
    Carles Ciutat
    BARCELONA
    (SPAIN)

    Yes, in the registry key you've noted we have the exact name of our tree ...
    Other keys under Workstation Manager\Identification are
    ImagingUserDefinedTree
    NALUserSingleTree
    Preferred Connection
    Tree
    Any idea ???
    Regards,
    Originally Posted by Marcus Breiden
    On Wed, 05 Mar 2008 17:06:02 GMT, in
    novell.support.zenworks.desktop-management.6x.management-agent you wrote:
    > Why the Workstation Manager launches the process in the AWI server
    > BEFORE the user logins??????
    it launches during boot, after the user logged in, when the user logs out,
    when you shutdown the wks and when you run zwsreg..
    check if you have the correct treename
    HKLM/Software/Novell/Workstation Manager/Identification/Tree
    Marcus Breiden
    If you are asked to email me information please remove the - in my e-mail
    address.
    The content of this mail is my private and personal opinion.
    DIDAS AG

  • Windows Server 2012 - Printing using UNC path not working

    Hi,
    I have a problem printing using the printer's UNC path ("\\Server_Name\Printer_Hostname") to work with a web
    app hosted on IIS 8. With a windows forms application the UNC path is working fine and the app prints.
    With
    the web app I receive an error "The data area passed to a system call is tool small". 
    Also,
    in the event viewer under Applications and Services Logs -> Microsoft -> PrintService -> Operational, I receive the error "The print spooler failed to reopen an existing printer connection because it could not read the configuration information
    from the registry key S-1-5-82-1980832875-2702362896-1795126167-3622310632-1152289074\Printers\Connections. The print spooler could not open the registry key. This can occur if the registry key is corrupt or missing, or if the registry recently became unavailable."

    I have contacted IIS forum support.
    Please review the link: http://forums.iis.net/p/1213109/2079229.aspx?Re+Windows+Server+2012+Printing+using+UNC+path+not+working
    Their final response:
    Printing from ASP.NET using System.Drawing.Printing itself is a horrible approach, as this namespace was designed for Windows Forms only. The designers did not take everything about ASP.NET in mind, so any issue can happen. That can answer why the HP model
    works while the Samsung fails, as the HP one just "happens
    to work",
    http://msdn.microsoft.com/en-us/library/system.drawing.printing.printdocument.aspx
    Similarly, System.Printing was designed just for WPF.
    About which printing API to use in ASP.NET/IIS, there is no clear answer so far. Thus, your only resource is Microsoft support, who can perform further analysis (with their dedicate utilities and of course Windows source code) and might come across a solution
    to help you out. This is not a trivial scenario.

  • When importing clips to iMovie11 the audio is missing. I have been able to successfully to this in the past and all of the sudden it is not working. Any help to solve the problem would be appreciated.

    When importing clips to iMovie11 the audio is missing. I have been able to successfully to this in the past and all of the sudden it is not working. Any help to solve the problem would be appreciated.
    Thank you for your help!

    Download/install an app is a know possible solution.
    3. Install another app from the App Store
    If all user-installed apps are not launching, it could be an Apple ID authorization issue. Download and install an app that isn't already installed on your device to reset this information.
    Note: If you have installed apps using multiple Apple ID accounts, you may need to perform this step for each account.
    Above from Apple's :
    iOS: Troubleshooting applications purchased from the App Store

  • SCCM 2012 SP1 Update to CU5 not showing version 1600 for clients updated !

    Recently upgraded SCCM 2012 SP1 and its showing a version of 5.0.7804.1600 as it should be. Pushed out the CU 5 client manager update to few machines and they are also showing .1600 as the version, however in SCCM 2012 manager itself it is not updating the
    status of those machines from say .1000 or .1400 to .1600. Why is this happening and any solution for it ? I have also updated the CM on the server hosting the SCCM and is current to .1600 version.

    Because the client agent version is returned from clients via heartbeat discovery which only occurs by default every 7 days. Thus, you need to be patient. Note that I generally recommend reducing the heartbeat cycle to at least once a day partly for
    this reason.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • SCCM 2012 R2 CU3 - Driver Import Fails

    Hi,
    We're having an issue importing new drivers, we can import drivers for Windows 7 fine but receive the following error when it's for Windows 8/8.1, 'The selected driver is not applicable to any supported platforms.' We've imported drivers before so it could
    be the recent upgrade to CU3. Anyone else on CU3 able to import Windows 8.1 drivers successfully. Installing the driver manually on the client works fine.
    Thanks
    Ben

    Hi,
    We're trying to add drivers so I'm not sure if this would matter. It seems very similar to
    http://support2.microsoft.com/kb/961105,
    http://support2.microsoft.com/kb/979492 and
    http://support2.microsoft.com/kb/978754. The first one mentions the Manufacturer in the inf file. We found a similar post
    http://www.windows-noob.com/forums/index.php?/topic/1590-error-when-importing-win-7-drivers-inf-files-solution/. If we modify the following line:
    [Manufacturer]
    %Intel%     = Intel, NTamd64.6.3, NTamd64.6.3.1
    and change it to the below it imports fine.
    [Manufacturer]
    %Intel%     = Intel, NTamd64.6.3.1
    I believe it's a bug and MS need to get their act together and fix it :-)
    Ben

  • Since 2012 I have Photoshop Elements always worked without any problem, however now the language is suddenly German how can this be changed, removed the program and re-installed, not working. Program is downloaded and updated via the apple app store?

    Since 2012 I have Photoshop Elements always worked without any problem, however now the language is suddenly German how can this be changed, removed the program and re-installed, not working. Program is downloaded and updated via the apple app store?

    I've done some research on the SQLite database. Whenever Aperture hangs up (like during auto-stack or opening the filter hud) there are thousands of SQLite queries happening. These SQLite queries cause massive file I/O because the database is stored on the disk as 1kb pages. However, the OS is caching the database file; mine's only 12MB. I'm trying to track down some performance numbers for SQLite on osx but having trouble.
    It's starting to look like most of the speed problems are in the libraries that Aperture uses instead of the actual Aperture code. Of course, that doesn't completely let the developers off the hook since they choose to use them in the first place.
    Oh, and if anyone is curious, the database is completely open to queries using the command line sqlite3 tool. Here's the language reference http://www.sqlite.org/lang.html
    Hmm, just found this. Looks like someone else has been playing around in the db http://www.majid.info/mylos/stories/2005/12/01/apertureInternals.html
    Dual 1.8 G5   Mac OS X (10.4.3)   1GB RAM, Sony Artisan Monitor, Sony HC-1 HD Camera

Maybe you are looking for