Document Information/Time spent on document

Hi all,
The school I work for in Tennessee is a 1:1 laptop school, PK-12th grade. A high school English teacher has asked me if there is a way in Pages to see just how long a student has spent time on said document("Suzy, you spent 4 minutes on a 2 page paper?", must have copied/pasted). I have looked in Inspector in the Document tab and see the Info tab, and I know about the Get Info on a file, but nothing states a time. I have heard Word gives this information. Any ideas in Pages?
Thanks for any help.

iWork documents store three date_time values :
SLCreationDateProperty
SLLastModifiedDateProperty
SLLastPrintedDateProperty
I wish to add that we may easily change the stored values but that we can't change the file's creation date_time which is displayed by the system.
Yvan KOENIG (VALLAURIS, France) lundi 15 novembre 2010 17:18:57

Similar Messages

  • Current Document Metadata insertion into Current Document

    Help!!  I need to place 'current document' metadata (not a placed photo, for instance) into the current document.  I have been able to place the "File Name" into the current file and that works great.  But I want to now place current file metadata, like 'Description' into the current file.  How do I do this - is it from "Text Variables" and how?

    I know where it is (in File Info).  My questions is:  "How do I place 'Current Document' information into the Current Document? 
    EXAMPLE:  open up  a text field anywhere in the document.  then, have InDesign place into that text field information about the current document - "Description" for instance, from the Current Document Metadata.

  • Is it possible to have two Excel workbooks open at the same time but only have one show the Document Information Panel?

    We are using SharePoint 2010 and Excel 2010. In SharePoint, we have created a custom content type that uses an Excel workbook template along with a Document Information Panel (DIP -- an InfoPath form) that always displays when a workbook of this custom
    content type is opened.  That's all working fine.  However, if one of those Workbooks is open with the DIP displayed and the user opens another Excel workbook, a DIP displays for the 2nd workbook even if it's just a regular workbook,
    i.e. not one of the custom content type.  If the user closes one of the DIPs, both close.  And if the user displays one of the DIPs again, both display. 
    Is there any way to separate out the DIP display for specific workbooks during the same Excel instance so that it shows in one but not in the other?  Or is this just something we have to live with (and train our users on)? 
    Thanks in advance.  Carol.

    Whether the DIP shows or not is a client side toggle, not something tied to an individual workbook.  So if you are using the same client instance then the DIP will display or hide based on what you did in the other workbook.  YOu might be able
    to create a macro that would display or hide it, but that's a lot of work for little advantage.  I would train the users and live with it.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • I have an iPhone 4S, iPad and MacBook Air.  I'm looking for an app or program where I can track time spent of specific projects each day and also document details of each project.  Is there anything available that is synced through iCloud?

    I have an iPhone 4S, iPad and MacBook Air.  I'm looking for a program or app that I can sync though iCloud that will allow me to us all of these devices to track time spent on projects each day along with the ability to add specific information about each project.  Any suggestions are appreciated! Thanks!

    I recommend you consider Omnifocus.  It is a task management program which runs on the Mac, Iphone & Ipad. I use it for task management and project management.  It let's you store additional information as well.   I sync all three devices through a Mobile Me account and I can enter data on any device and it is available on all devices.  I believe you can also sync through Dropbox.  I'm not sure that you can sync through iCloud yet.  The link to their website is:  www.omnigroup.com.  There may be less expensive alternatives, but this one meets my needs and syncs very well across all devices.

  • The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.

    Hi Guys,
    I am creating the library using object model with custom content type.  When i am opening document from custom content type, the meta data fields are not displaying in the document and throwing below error.
    The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.
    Document Information Panel cannot open a new form.
    The form contains schema validation errors.
    Content for element '{http://schemas.microsoft.com/office/2006/metadata/propertiesRoot}properties' is incomplete according to the DTD/Schema.
    Expecting: {http://schemas.microsoft.com/office/2006/metadata/properties}properties.
    But after saving the document, then meta data is enabled.
    Thanks in advance for suggested solutions.
    thanks
    Santhosh G

    Hi,
    For a better troubleshooting, I suggest to do as follows:
    1. Please try to update the Location column's schema by following the steps below.
     1) Go to Site Settings -> "Site Columns"
     2) Click on "Location", after the page is opened. Don't modify any settings, click "OK"  to forcibly update the field's schema.
    2. Re-edit the document information panel template to see if the issue still occurs.
    Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
    3. Here are some similar links about your issue, please take some time to look at them:
    http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomizationlegacy/thread/243b4852-3f17-4a3a-b6d7-187d65a5f088/
    http://blogs.msdn.com/b/raresm/archive/2010/03/30/document-information-panel-cannot-open-the-form.aspx
    https://joranmarkx.wordpress.com/2012/02/10/sharepoint-document-information-panel-cannot-create-a-new-blank-form/
    If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
    Apply-Fix -siteUrl "http://your site URL "
    function Apply-Fix($siteUrl)
    clear
    Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
    [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
    foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
    Write-Host "Checking Web: " $spwTarget.Url
    $list = $spwTarget.Lists["your library name"]
    $fields = $list.fields
    foreach($field in $fields)
    if($field.SourceId -eq '{$ListId:your library name;}')
    $schemaxml = $field.SchemaXML
    $schemaxmldata = [xml]$schemaxml
    $schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
    $schemaxml = $schemaxmldata.get_InnerXml()
    $field.SchemaXML = $schemaxml
    $field.Update()
    Write-Host "Fixed" $field.Title "field in the library"
    Write-Host "Done."
    More information:
    SharePoint 2010: Creating a Custom Content Type using Visual Studio
    http://www.codeproject.com/Articles/410880/SharePoint-Creating-a-Custom-Content-Type-usi
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Dennis Guo
    TechNet Community Support

  • Is there a way to place an encrypted document on the iPhone, a document that contains passwords and private information, really well protected from hackers?

    Is there a way to place an encrypted document on the iPhone, a document that contains passwords and private information, really well protected from hackers?
    Can such a document be exempted from the cloud feature, a feature that I use for the rest of my stuff?
    If so, how can I do this?

    Yeah, but 1Password charges for both the iPhone client AND the Mac/Windows client, and it ain't cheap! Plus, it only syncs via Dropbox, and where I work Dropbox is banned due to security concerns.
    Sure, there is Secure Notes, a free form entry part of 1Password, but a bug in the program will not let you view all the text you can put in the field!! You have to EDIT the text to see the whole list! What if you accidentally delete or change an entry while scrolling through your entries??
    Plus NONE of the programs I have tried, and I have tried a lot, can find text IN the file - do a search and it will tell you what file/folder the text is in, but YOU have to scroll down through 400 entries one at a time looking for the entry.
    I use a program called Secure Text - I have many admin passwords, and DO not need a field based program. Secure Text is totally freeform entry. However, it suffers from the same search issue.
    If someone knows of a secure text program that uses a file/folder type of layout, free form entry, AND can actually tell you where in the file/folder the text you searched for is, PLEASE let me know! Plus sycing via some method other than Dropbox would be a plus.
    Before I got my iPhone, I used a program called Tombo for my WinCE based system AND my Windows workstation, and the synced up fine without iTunes, internet, DropBox type functionality or any of that horsecoller stuff Apple likes to throw on your neck.

  • Failed to get the document information (LO 26315)

    Hi,
    I have to create an Xcelsius dashboard where I use a Live Office connection based on a WebI-report. The WebI is created on top of a BEx Query.
    I need to pass 12 parameters to the WebI-report in orde to get the correct data.
    Everything works fine in design-time, but when I want to preview the dashboard, I get the error: Failed to get the document information (LO 26315).
    After investigating the issue, I've noticed that everything works fine when the parameters I have to pass, are only created in the WebI-report. But in my case it is a BEx variable that causes the error.
    There is no possible way that I can recreate the BEx variable in the Universe (There are restricted key figures, calculated key figures and cell restrictions in the BEx query).
    My question: is there a way to pass a parameter from an Xcelsius dashboard to a WebI-report via a Live Office connection to a BEx variable?
    Lieven

    Fred,
    on the SAP Notes Search page on sdn.sap.com, you can enter the note number in a text field at the right side of the page, just above the Search Option part.
    Just enter Note 1357924 in that text field and press the blue icon with the arrows next to it. Thiw ill show the corresponding note.
    Lieven

  • Time of opening document

    Hi,
    is there a property to read, at what time a document was opened.
    Target is to know how long it took to edit a document.
    File will be opened via the File - Open dialog, at that point no scripting involved,
    but at the end the file is saved by using a javascript. In that script i wan't to make a log file with edit time

    I wrote a run twice script to time the duration it took to run an action the could be used to do something like you want to do. It may not be perfect for I do not know how you would trigger the second run of the script.  You could trigger the first run using the script event manager to run the script when an open document event occurs.  The script would note the start time in the documents metadata.  A second run of the script before your close event would be needed to know the stop time  and  get the start start times from the metadata to calculate the duration. 
    If you use a script to save and close your document you could through in a run of the script before you close out the document.  A close event happens after the document has been closed so the document and its metadata is not available when a script manager close event is triggered.
    /* =============================================================================================
    // 2010  John J. McAssey (JJMack)  http://www.mouseprints.net/
    // This script is supplied as is. It is provided as freeware.
    // The author accepts no liability for any problems arising from its use.
    // This script is designed to be used by a Photoshop Action twice
    // A good pratice to use when creating an actions that use this scipt is for the action
    // not to do a save or play some other action between its two useages of this Script.
    // The first time this script is used by an action the currend date and time
    // are saved into the document's meta-data Info Instructions field.
    // The second time this script used by the action this script retreives the date and time
    // that was saved in the meta-data during the first usage.
    // The script Outputs an Action duration message to Alerts the user of the time it took.
    // Logs the Action Times into the ActionTime.log file in the folder where the script resides.
    // Then the saved date and time is removed from the document's meta-data Info Instructions field.
    // ============================================================================================== */
    <javascriptresource>
    <about>$$$/JavaScripts/ActionTime/About=JJMack's ActionTime^r^rCopyright 2010 Mouseprints.^r^rRun twice script utility for action.^rNOTE:Don't play other actions between runs!^r^rFirst Run records Actions Start Time.^rSecond Run removes start time recording and outputs an execution time message.</about>
    <enableinfo>true</enableinfo>
    <category>JJMack's Action Run Twice Utility</category>
    </javascriptresource>
    if (app.documents.length > 0) { // LOGFile faild trying this --> app.activeDocument.suspendHistory('ActionTime','main()');
              if (app.activeDocument.info.instructions.indexOf("<ActionTime>") == -1 ){ // no footprint fisrt useage
                        //alert("first");
                        // Retreive Date Time for Foot Print
                        var stime = new Date().getTime();
                        //alert("Time = " + stime );
                        StartTime = timeStamp() ;
                        // put footprint in metadata info instructions
                        app.activeDocument.info.instructions = app.activeDocument.info.instructions + "<ActionTime>" + StartTime + "</ActionTime>" + "<ClockTime>" + stime + "</ClockTime>";
                        //alert( "Saved ="  + "<ActionTime>" + StartTime + "</ActionTime>"+ "<ClockTime>" + stime + "</ClockTime>");
              else {
                        //alert("second");
                        var etime = new Date().getTime();
                        //alert("Time = " + etime );
                        EndTime = timeStamp();
                        // Retreive saved information
                        ActionTimeOffset = app.activeDocument.info.instructions.indexOf("<ActionTime>") + "<ActionTime>".length;
                        ActionTimeLength = app.activeDocument.info.instructions.indexOf("</ActionTime") -ActionTimeOffset;
                        StartTime = app.activeDocument.info.instructions.substr(ActionTimeOffset, ActionTimeLength);
                        ClockTimeOffset = app.activeDocument.info.instructions.indexOf("<ClockTime>") + "<ClockTime>".length;
                        ClockTimeLength = app.activeDocument.info.instructions.indexOf("</ClockTime") -ClockTimeOffset;
                        stime = app.activeDocument.info.instructions.substr(ClockTimeOffset, ClockTimeLength);
                    duration = ((etime - stime)/1000);
                        alert("ActionTime \rStart = " + StartTime  + " \rEnd   = " +  EndTime + " \rTime = " +  duration + " Seconds");
                        // Log Edit Session into Log File
                        var scriptLocation = findScript()+ "0";
                    var LOGFilePath = scriptLocation.slice(0,-4) + "log";
                    var LOGFile = File(LOGFilePath);
                        writeLOG(app.activeDocument.name + " Start=" + StartTime  + " End=" +  EndTime + " Time=" +  duration + " Seconds\r")
                        // End log File
                        // Remove footprint from metadata info instructions
                        before = app.activeDocument.info.instructions.substr(0,app.activeDocument.info.instructions.indexOf("<ActionTime>"));
                        afterOffset = app.activeDocument.info.instructions.indexOf("</ClockTime>") + "</ClockTime>".length;
                        after = app.activeDocument.info.instructions.substr(afterOffset, app.activeDocument.info.instructions.length - afterOffset);
                        //alert ("before = " + before + " after = " + after);
                        app.activeDocument.info.instructions = before + after;
    else { alert("You must have at least one open document to run this script!"); }
    //       main function
    function main(){
    // END - main function
    function timeStamp(){
              // Get the time and format it
              var digital = new Date();
              var hours = digital.getHours();
              var minutes = digital.getMinutes();
              var seconds = digital.getSeconds();
              var amOrPm = "AM";
              if (hours > 11) amOrPm = "PM";
              if (hours > 12) hours = hours - 12;
              if (hours == 0) hours = 12;
              if (minutes <= 9) minutes = "0" + minutes;
              if (seconds <= 9) seconds = "0" + seconds;
              // Get the date and format it
              var date = new Date();
              var d  = date.getDate();
              var day = (d < 10) ? '0' + d : d;
              var m = date.getMonth() + 1;
              var month = (m < 10) ? '0' + m : m;
              var yy = date.getYear();
              var year = (yy < 1000) ? yy + 1900 : yy;
              // create a variable with the fully formatted the time and date
              // todaysDate = hours + ":" + minutes + ":" + seconds + " " + amOrPm + " - " + day + "/" + month + "/" + year;
              // todaysDate = hours + ":" + minutes + ":" + seconds + " " + amOrPm + " - " + month + "/" + day + "/" + year;
              MonthNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
              todaysDate = hours + ":" + minutes + ":" + seconds + " " + amOrPm + " " + MonthNames[date.getMonth()] + " " + date.getDate() + ", " + year;
            return todaysDate;
    // Find the location where this script resides
    function findScript() {
              var where = "";
              try {
                        FORCEERROR = FORCERRROR;
              catch(err) {
                        // alert(err.fileName);
                        // alert(File(err.fileName).exists);
                        where = File(err.fileName);
              return where;
    // Write LOG file
        function writeLOG(log) {
            try {
                if(LOGFile.exists) {
                    LOGFile.open ("e");
                    LOGFile.seek (0,2);      // Move to EOF
                } else {
                LOGFile.open ("w");          // Add unicode marker if we change to LOG file format for this log file
            LOGFile.encoding = "UTF8"; // set UTF8
            LOGFile.write(log);
            LOGFile.close();
            } catch (e) {
                alert(e);
            } finally {
            return;

  • Add Document Information

    Hi,
    we have Adobe PDF Printer from Acrobat XI Pro.
    In settings from Printer Driver the function "Add document information" isn't set and we can convert Microsoft Word/Excel Documents in PDF w/o any Info. But many times after Update of Acrobat Reader Pro was reset of all settings to default. Where are this settings in Register saved??
    However if we try to convert Word/Excel Dokument from right-click menu, will tittel, autor and other infos transfered to PDF document. How can we avoid this??!
    Best Regards
    Iaroslav Zabolotnykh

    I have removed Adobe X on a several test machines.  I reinstalled using our custom setup with the "Add Document Information" unselected.  I can install update 10.1.9 with no problem.  If I do the custom install and then install the 10.1.8 update I get mixed results with some machines turning the "Add Document Information" back on. 
    Any ideas to turn this off would be helpful.  Uninstalling and reinstalling is not a solution due to the number of computers.

  • Registry key to turn off "Add Document Information"?

    I'm trying to find a way to automate the process of turning off the "Add Document Information" checkbox when printing a PDF on about 300 machines.  It's the 2nd checkbox down under Printers -> Adobe PDF -> Printing Preferences.
    I see it is changing the following when I uncheck the box that says add document information, but I can not get it to uncheck the box if I do these registry changes.  The ChangeID number also changes to some random number everytime I modify something under that Adobe PDF Printer:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\Adobe PDF\ChangeID=8231360
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Print\Printers\Adobe PDF\PrinterDriverData\AddDocInfo=0
    HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Print\Printers\Adobe PDF\ChangeID=8231360
    HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Print\Printers\Adobe PDF\PrinterDriverData\AddDocInfo=0
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers\Adobe PDF\ChangeID=8231360
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers\Adobe PDF\PrinterDriverData\AddDocInfo=0
    Any help would be great.  Thanks.

    Version 9 and 10 of Reader do not cache form data in a temporary FDF as previous version may have. The nocache document property it not even documented in the latest Acrobat JavaScript reference. If you're concerned about previous versions, you can use set the nocache document property at run-time, but users can disable JavaScript, so that approach is no guarantee.
    For information on controlling autocomplete, see: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.407.html

  • Person and Group column in Document Information Panel in Word

    Hi All,
    Environment: SharePoint 2010 and Claims based Authentication.
    We have a library with "Person and Group" column, "Choose from:" is set to "All Users" and in the "Document Information Panel" when I click on the Address Book (book symbol) it doesn't open the popup to select  the
    user nor it resolves the ids that I put in.
    But if I change the setting for "Choose from:" to "SharePoint Group:" and select any group (tested randomly with some existing groups in that site), now when I click on the Address Book in the DIP it gives me the popup and also resolves
    the ids.
    Any help would be appreciated.

    http://social.technet.microsoft.com/Forums/sharepoint/en-US/868b7d59-06e7-437f-8a3e-5f49e51c7b8d/people-picker-render-error-in-document-information-panel
    Have you by chance looked at ULS logs or taken a network trace during the time the People Picker control is attempting to be rendered? 
    It seems to be a client-side issue. GPOs have been applied to "secure" Office2010.
    Have you ever heard of GPOs causing such issues? As far as I know the people picker is an ActiveX control. There are two settings in the GPO which have something to do with Active X:
    Active X Control Initialization
    Check Active X Objects
    Windows Internet Explorer Feature Control Opt-In
    Beaconing UI for forms opened in Infopath Filler Active X
    Bind to Object
    If this helped you resolve your issue, please mark it Answered

  • Font information changed, may effect document?

    When I used Print Setup to print the Book for my Structured Document, after selecting the "PDF Printer" I get a message saying "The font information for your computer has changed. This change may effect the format and output of your document".  How can I consolidate the font information so it doesn't change and I'm using the same font information to design my documents?

    FM also uses any available printer fonts, so switching to the AdobePDF gives you a very limited selection. Usually, the issue is with Times vs TimesNewRoman and this is effectiveely transparent.
    To ensure that you dont' have this happening, it's best to always have the AdobePDF as the default printer when using FM. The Sundorne SetPrint utility (http://sundorne.com/FrameMaker/Freeware/setPrint.htm ) does this automatically for you and is highly recommended.

  • How do I retrieve document information from the portal tables?

    Hi, I'm really stuck on this and any help would be much appreciated.
    I want to select out document information using the categories and perspectives as search criteria, I've written the following select statement but am not sure that this is the correct way to do it and I keep getting a 'unhandled user-defined exception ... at PORTAL.WWCTX_SSO'
    (I have set the context before running the sql)
    select id, display_name, description, real_filename, mime_type, doc_size
    from
    portal.wwsbr_all_items, portal.wwv_document$
    where
    wwsbr_all_items.filename = wwv_document$.name
    and category_id=(select id from portal.wwsbr_all_categories where name = 'MY_CATEGORY')
    and id in (select item_id from portal.wwsbr_item_perspectives where upper(perspective_name) = 'MY_PERSPECTIVE')
    and is_current_version = 1 and (expiredate IS NULL or expiredate > sysdate)
    Alison

    If the iPhone was connected to iCloud at the time you deleted the Contact, then the Contact has been removed from iCloud and is not recoverable.
    Check at www.icloud.com to see what iCloud Contacts you still have.

  • A what time was a Document Aproved ?

    I need to create a report that shows at what time was a document aproved (a sales invoice). I looked at the ADOC table to see doctime it only shows the time the user first created the document, not when it was aproved in a Approval Procedure. Where is these information stored ?

    You may check OWDD table for the info.
    Thanks,
    Gordon

  • Tracking the active time on the document

    Hi All,
    I am trying to calculate the total active time spent on a document and for the same i tired using IIdleTaskMgr::kMouseTracking and IIdleTaskMgr::kUserActive flags in the runTask,but it is not working.Can somebody tell me if it is the right approach or not????

    IdleTask won't be of much help. In fact it's probably going to give you the opposite result.
    IdleTasks are only given time when things are quiet for InDesign - as a rough rule of thumb.
    That is an IdleTask only really gets some time to work if nothing else is going on.
    That's why it's named as it is: IdleTask is a way of taking moments when InDesign is idle to do other tasks.
    You probably need to think what you mean by being actively worked on.
    This will be a hard thing to measure meaningfully.
    One approach would be to create an ActiveSelectionObserver.
    This would track people clicking about on items that are on a page.
    I'd then observe both SelectionChanged and AttributeChanged.
    Then I'd bracket those events - would 5 seconds be a long time between actions?
    What I'd do is every time something changed I'd reset my timer to 5 seconds.
    While events happened within that time then work is being done.
    Anything longer and the person is no longer working on it.
    This method will probably underestimate the time.
    A another measure would be to get the time when a document is opened
    and substract that from the time the document is closed.
    Pausing while the document is inactive might be also an idea.
    This method will probably overestimate the time worked on a document.
    There's probably a tonne of other ways of measuring time.
    But as you can see, how you do it depends on what you are trying to measure.

Maybe you are looking for

  • Can I remotely turn the ringer volume on so I can find my phone?

    Can I remotely turn the ringer volume back on, so I can find my phone using the "find my phone" ap?  It's nearby, but I don't know where. I think I have an iphone 4???

  • Conversion from decimal to char

    Hi experts, i am using some function module which has parameter of type char(132) . now i have to pass packed no  p(7) decimals 3  to  this how to do it .  if i send directly function module raising run time error ( type conflict). how we can do this

  • Trying to install the FolioProducerTools-CS55 (Mac OSX)

    Trying to install the FolioProducerTools-CS55 (Mac OSX), but running into a "damaged" installer error. Why would I receive a damaged error? Where can I find the latest toolset for InDesign CS5.5?

  • Cost Elements in CO

    Hi, We assign profit center in material master. In case of FI reports, Inventory balances can be seen PC wise. However, in CO-PCA, inventory balances cannot be seen. Any ideas? As per my understanding, since Inventory accounts are not Cost elements,

  • Install arch possible on a Linx7 tablet

    ordered a windows 8 (booo! hiss!) tablet with intel atom cpu would it be possible to put arch on one of these? Intel Atom Z3735 what other information would i need to know if it would install ?