File Properties Question

Hi, I have some .mht files stored in a KM folder.  When I review the properties of this file it shows the "Target Url" as having an http://<%hostname%> location.   I am logged on as HTTPS.  Does this cause any problems?  Is the "Target URL" correct even though I'm logged on as HTTPS?
Thanks,
Ken Murray

No Answer

Similar Messages

  • File properties: mysterious dates for created, modified and last opened

    I've seen this ever since I started using my Mac - I am a relatively new Mac user (a year or more vs. well, decades on Win/PC).
    Finder: click on a file and it will show its properties. It will have a "More info" button.
    The dates displayed between the 2 above are different.
    1) In the "immediate" display it would say something like:
    Last opened: Today at 10PM
    - this wrong day, "correct" time
    - considering that it will display this at say 7AM "today"...well, it's a "future" date/time
    2) If you click the More info button, the "truth" comes out
    Last opened: Yesterday at 10PM (accurate)
    Never really cared, but thought I'd ask here. At some point, if I start some development on the Mac, and filesystems, file properties are involved, this will obviously be an issue. I don't even know if this affects file searching based on these properties - again, new user, using Mac for very specific purpose, but usage is definitely on the rise, so I'd like to get some direction on very basic OS behavior like this fully understood.
    Thanks and happy new year to all!

    EdSF wrote:
    Thanks VK. I'm the only user.
    Can you please clarify on what user accounts have to do with this behavior?
    I've seen many times when corrupt date settings in the global user preference file cause wrong modified dates to be displayed in finder. in that case if you make a different user they will be displayed correctly. the file in question is ~/library/preferences/.GlobalPreferences.plist.
    It's ok to be technical in your response....if it goes over my head, I'll be frank and ask for clarification....
    - Is it a user-defined preference/setting?
    - It's almost like a busted UTC/time zone routine (somehow "TODAY" is UTC, but the time value doesn't match) re: 10PM last night on PT is/was "today" in UTC....

  • SSIS 2012 Script Task to Get File Properties

    Hello,
    I researched on how to grab a file properties such as file size, file modified date, etc and I came across the following
    link:
    I followed exact steps and when I went to execute the package, I got the following error:
    Below is the code:
    // C# code
    // Fill SSIS variables with file properties
    using System;
    using System.Data;
    using System.IO; // Added to get file properties
    using System.Security.Principal; // Added to get file owner
    using System.Security.AccessControl; // Added to get file owner
    using Microsoft.SqlServer.Dts.Runtime;
    using System.Windows.Forms;
    namespace ST_cb8dd466d98149fcb2e3852ead6b6a09.csproj
    [System.AddIn.AddIn("ScriptMain", Version = "1.0", Publisher = "", Description = "")]
    public partial class ScriptMain : Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
    #region VSTA generated code
    enum ScriptResults
    Success = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Success,
    Failure = Microsoft.SqlServer.Dts.Runtime.DTSExecResult.Failure
    #endregion
    public void Main()
    // Lock SSIS variables
    Dts.VariableDispenser.LockForRead("User::FilePath");
    Dts.VariableDispenser.LockForWrite("User::FileAttributes");
    Dts.VariableDispenser.LockForWrite("User::FileCreationDate");
    Dts.VariableDispenser.LockForWrite("User::FileExists");
    Dts.VariableDispenser.LockForWrite("User::FileInUse");
    Dts.VariableDispenser.LockForWrite("User::FileIsReadOnly");
    Dts.VariableDispenser.LockForWrite("User::FileLastAccessedDate");
    Dts.VariableDispenser.LockForWrite("User::FileLastModifiedDate");
    Dts.VariableDispenser.LockForWrite("User::FileOwner");
    Dts.VariableDispenser.LockForWrite("User::FileSize");
    // Create a variables 'container' to store variables
    Variables vars = null;
    // Add variables from the VariableDispenser to the variables 'container'
    Dts.VariableDispenser.GetVariables(ref vars);
    // Variable for file information
    FileInfo fileInfo;
    // Fill fileInfo variable with file information
    fileInfo = new FileInfo(vars["User::FilePath"].Value.ToString());
    // Check if file exists
    vars["User::FileExists"].Value = fileInfo.Exists;
    // Get the rest of the file properties if the file exists
    if (fileInfo.Exists)
    // Get file creation date
    vars["User::FileCreationDate"].Value = fileInfo.CreationTime;
    // Get last modified date
    vars["User::FileLastModifiedDate"].Value = fileInfo.LastWriteTime;
    // Get last accessed date
    vars["User::FileLastAccessedDate"].Value = fileInfo.LastAccessTime;
    // Get size of the file in bytes
    vars["User::FileSize"].Value = fileInfo.Length;
    // Get file attributes
    vars["User::FileAttributes"].Value = fileInfo.Attributes.ToString();
    vars["User::FileIsReadOnly"].Value = fileInfo.IsReadOnly;
    // Check if the file isn't locked by an other process
    try
    // Try to open the file. If it succeeds, set variable to false and close stream
    FileStream fs = new FileStream(vars["User::FilePath"].Value.ToString(), FileMode.Open);
    vars["User::FileInUse"].Value = false;
    fs.Close();
    catch (Exception ex)
    // If opening fails, it's probably locked by an other process
    vars["User::FileInUse"].Value = true;
    // Log actual error to SSIS to be sure
    Dts.Events.FireWarning(0, "Get File Properties", ex.Message, string.Empty, 0);
    // Get the Windows domain user name of the file owner
    FileSecurity fileSecurity = fileInfo.GetAccessControl();
    IdentityReference identityReference = fileSecurity.GetOwner(typeof(NTAccount));
    vars["User::FileOwner"].Value = identityReference.Value;
    // Release the locks
    vars.Unlock();
    Dts.TaskResult = (int)ScriptResults.Success;
    Eventually I am looking to just grab the Modified Date from the Windows Explorer folder and insert into table. Any suggestions? Thank you in advance!
    Sanjeev
    Sanjeev Jha

    Hi SSISJoost,
    I am so glad you responded to this thread. You are absolutely right. I copied the entire code including the project name (guid) and that solved the error problem.
    Now, what did you do to get the message box? I added the watch and I could see the values but how do I get these values in a table? If I remember correctly, in your blog, you mentioned something about using derived columns. I am familiar with Derived Columns
    but how do I do that? I appreciate your response.
    Thank you.
    Sanjeev
    Sanjeev Jha
    I used a second script task to show all variable values. It has a
    MessageBox in it and between all
    variables I added a
    newline to make it more readable...
    But with an Execute SQL Task and parameters you can also put these values in a Table... or you can read the file in a Data Flow Task and add those variables (as metadata) to each record with a Derived Column
    Please mark the post as answered if it answers your question | My SSIS Blog:
    http://microsoft-ssis.blogspot.com |
    Twitter

  • Windows File Properties vs. Content Services Properties

    Hi.
    On behalf of a customer I am evaluating Windows file properties vs. CS file properties.
    Client Environment: Windows XP SP2, O-Drive.
    Rightclick a File stored on O (O-Drive, Content Services).
    a Props. Dialog shows up, the first tab is General*. It shows several file
    properties among others the following:
    - Last Access Date: This always shows Wed. 1 Jan 1986 00:00:00
    Does this correspond to any content services file property? If so, why
    is it always 1-jan-1986 00:00.00 and does not change? Is it a bug?
    - Checkboxes Write protected* / Archive* / Hidden*
    Do these correspond to any cs file property? Do these have any effect?
    (I tried write protected, but it did not work as expected, I was able
    to overwrite the file) Bug or Feature?
    If these checkboxes do not work, could these be disabled through O-Drive,
    otherwise users might get confused...
    Regards, Tom
    * (I don't know the exact english labels as I am working on a german client... so
    I translated the german labels - sorry)

    Hi. Sure, here's some collateral information:
    We are evaluating Content Services for several customer projects.
    During a presentation I held 2 weeks ago a customer asked exactly
    those questions and I had to admit I could not answer.
    So I retried on our test instance and checked the docu and still
    could not get a clue how windows attributes and cs attributes correspond.
    Then I asked MJS during last weeks workshop he did not know exactly either.
    Hence I am asking on the forum.
    Regards, Tom
    (PS. If you require further background information you may contact me via email
    or ask E. Neuwirth on Tom Gansor / OPITZ Consulting).

  • Editing metadata in the file properties window

    Hi,
    I’m using Win XP SP3 on a “normal” Desktop-PC. Since my problem is not connected to hardware I think that description is enough but I do not know which software information is required. So you may ask. Important is maybe that I am running Adobe Acrobat and Reader simultaneously on the same machine.
    The problem: I always changed and edited some of the metadata of my PDF files by bringing up the file properties window of the PDF (right click - properties). Next to the “General”-Tab is the “PDF”-Tab. You can see the title, author, topic, dates and PDF-Version of the document. The first four fields where always editable textboxes. I get used to put in some comments and other important information because I didn’t want to use any tool. Now the complete window is locked. Is this because of the new 9.3.3 Reader update? I updated so many times and never anything like this happened. How can I turn back to the old behavior?
    I do not want to edit those information in Acrobat by choosing File and then propertis because it takes much more time because i have to open the file (if it is one its fine) but if there are more where the same info shall be in I'd like to use the built in function of the properties sheet in windows.
    With kind regards
    DragJo

    At first I asked that question by mistake in the wrong forum so I put in it here. But it has been answered there http://forums.adobe.com/message/2973589
    so I mark this as answered, too.

  • Editing metadata in the file properties

    Hi,
    I’m using Win XP SP3 on a “normal” Desktop-PC. Since my problem is not connected to hardware I think that description is enough but I do not know which software information is required. So you may ask.
    The problem: I always changed and edited some of the metadata of my PDF files by bringing up the file properties window of the PDF (right click - properties). Next to the “General”-Tab is the “PDF”-Tab. You can see the title, author, topic, dates and PDF-Version of the document. The first four fields where always editable textboxes. I get used to put in some comments and other important information because I didn’t want to use any tool. Now the complete window is locked. So my question is why did this happen? Shall this be a Feature of the new 9.3.3 update? If yes I just can say it isn’t. And my question would then be: How I can turn back to the old behavior?
    With kind regards
    DragJo

    Thanks,
    I just ran the Acrobat repair installation and I got the expected function back. In addition it does not matter any longer which icon I click (reader or acrobat) to open Acrobat. The reason for having both installed is just that I needed a "pdf viewer" from the first minute after having installed the OS and installing Acrobat needs much more configuration in my case then just the "tiny" Reader equivalent. The best thing: I did not realize any other problem.
    Kind regards,
    DragJo

  • Windows 7, file properties - Is "date accessed" ALWAYS 100% accurate?

    Hello,
    Here's the situation: I went on vacation for a couple of weeks, but before I left, I took the harddrive out of my computer and hid it in a different location. Upon coming back on Monday (January 10, 2011) and putting the harddrive back in my computer, I
    right-clicked on different files to see their properties. Interestingly enough, several files had been accessed during the time I was gone! I right-clicked different files in various locations on the harddrive, and all of these suspect files had been accessed
    within a certain time range (Sunday, ‎January ‎09, ‎2011, approximately ‏‎between 6:52:16 PM - 9:06:05 PM). Some of them had been accessed at the exact same time--down to the very second. This makes me think that someone must have done
    a search on my harddrive for certain types of files and then copied all those files to some other medium. The Windows 7 installation on this harddrive is password protected, but NOT encrypted, so they could have easily put the harddrive into an enclosure/toaster
    to access it from a different computer.
    Of course I did not right-click every single file on my computer, but did so in different folders. For instance, one of the folders I went through has different types of files: .mp3, ,prproj, .3gp, .mpg, .wmv, .xmp, .txt with file-sizes ranging from 2 KB
    to 29.7 MB (there is also a sub-folder in this folder which contains only .jpg files); however, of all these different types of files in this folder and its subfolder, all of them had been accessed (including the .jpg files from the sub-folder) EXCEPT the
    .mp3 files (if it makes any difference, the .mp3 files in this folder range in size from 187 KB to 4881 KB). Additionally, this sub-folder which contained only .jpg files (48 .jpg files to be exact) was not accessed during this time--only the .jpg files within
    it were accessed-- (between 6:57:03 PM - 6:57:08 PM).
    I thought that perhaps this was some kind of Windows glitch that was displaying the wrong access date, but then I looked at the "date created" and "date modified" for all of these files in question, and their created/modified dates and
    times were spot on correct.
    My first thought was that someone put the harddrive into an enclosure/toaster and viewed the files; but then I realized that this was impossible because several of the files had been accessed at the same exact time down to the second. So this made me think
    that the only other way the "date accessed" could have changed would have been if someone copied the files.
    Is there any chance at all whatsoever that this is some kind of Windows glitch or something, or is it a fact that someone was indeed accessing my files (and if someone was accessing my files, am I right about the files in question having been copied)? Is
    there any other possibility for what could have happened?
    Do I need to use any kinds of forensics tools to further investigate this matter (and if so, which tools), or is there any other way in which I can be certain of what took place in that timeframe the day before I got back? Or is what I see with Windows 7
    good enough (i.e. accurate and truthful)?
    Thanks in advance, and please let me know if any other details are required on my part.
    P.S. The harddrive is NTFS.

    Never mind.  Someone else already answered this for me:
    "I use last accessed-created date time stamps all the time when troubleshooting-investigating software installs, its been very accurate in my uses of it in NTFS file systems.
    Since some of the dates are while you were gone, I assume it was several days to a week, I would say someone did access those files.
    These timestamps along with other data are used by computer forensics teams to reconstruct what a user did on a computer.
    Experienced Hackers use software to alter these time stamps to cover their tracks when breaking into computer systems."
    http://superuser.com/questions/232143/windows-7-file-properties-is-date-accessed-always-100-accurate/232320#232320
    Additionally, I just now found out what happened. Someone else found the harddrive and thought it was theirs (since it was identical to one they had been missing), so they put it in their computer and scanned it with an anti-virus software. They realized it
    wasn't theirs and then put it back in the place I had hidden it.
    In my original question, I stated a possible theory that someone may have copied the files, but I later realized that copying in itself doesn't affect the "date accessed" of the original/source file, but rather only the "date accessed" of
    the copy.
    Thanks to all those that may have read my question.

  • Read sequence file properties from the test sequence

    Hi,
    I use the old version of TestStand 2.1. I have the option of version sequence (Sequence File Properties) that incrimante each backup. I wanted to know if I can get in the sequence, a variable that indicates the version of the current program.
    Thank you in advance
    Solved!
    Go to Solution.

    If I understood your question correctly, either use ActiveX steps to access the PropertyObjectFile.Version property or use the hidden property: RunState.SequenceFile.Data.Version. Hidden properties are subject to change in future versions of TestStand though, so it's more future proof to use the API. This particular property has however never changed so far.
    Hope this helps,
    -Doug

  • Is it possible through labview to set and read window¿s based file properties​?

    Any file in XP operating system has file properties associated with it, such as, size, location, when the file was created, modified and last accessed. I know that Labview has the ability to access the size and modified property. Other file types such as image format types jpg, bmp and tif have additional associated properties such as: title, subject, author, and comments. Is it possible through labview to read and set these properties programmatically?

    Hpopenoe wrote:
    > Any file in XP operating system has file properties associated with
    > it, such as, size, location, when the file was created, modified and
    > last accessed. I know that Labview has the ability to access the size
    > and modified property. Other file types such as image format types
    > jpg, bmp and tif have additional associated properties such as: title,
    > subject, author, and comments. Is it possible through labview to read
    > and set these properties programmatically?
    Well, you can most probably do that by calling Windows API functions.
    Note however that the properties you mention are not generic Windows
    file properties but file specific internal attributes. Explorer does at
    least in XP handle some of those properties and shows them to the user
    but does so with internal file type handlers to extract the properties
    from the file.
    I'm not sure those file type handlers are actually available for other
    applications than Explorer without quite some work. If they are
    available they are certainly not part of the standard Win32 API but most
    probably part of the Windows shell component and I would guess not just
    through normal API function calls, but through the shell namespace
    enumeration, which is built on COM interfaces, something you only can
    call from standard programming languages, most of them are done in C++
    (and if you are a little more persistant in standard C).
    So you are likely to need to either write your own DLL doing the nitty
    gritty work of calling the shell interface and using that DLL in LabVIEW
    or find an Active X component which does the work for you. No doubt
    there is such an Active X component somewhere but how good and expensive
    is always a big question.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Disable "Allow files on this drive to have contents indexed in addition to file properties" for Mointpoints

    Hey Guys,
    I wandt to optimize all our SQL Servers and so I want to disable the  "Allow files on this drive to have contents indexed in addition to file properties" option in the Volume Properties. 
    The SQL Server is installed under D:\SQLSERVER which is a normal folder.
    For the root and sub directories d:\ the following solution works:
    https://social.technet.microsoft.com/Forums/en-US/bf99c428-7fbc-4cd5-9a4a-0c6b69e906ab/disable-allow-files-on-this-drive-to-have-contents-indexed-in-addition-to-file-properties?forum=ITCG&prof=required
    But we have Mountpoints for the Data and Log Files under D:\SQLUSRDATA and D:\SQLUSRLOG. When I use the NotContentIndexed Attribute on this direcotry there is no error message. But when I go to  Properties of the Mountpoint folder under General >
    Properties The "Allow files..." option is still activated. 
    Is there a solution to deactivate Indexing on Mointpoints via Powershell?

    Your question has nothing to do with scripting.
    I recommend that all SQLServer systems have a GP applied that sets the minimum requirements for the server.  This would include disabling the indexing service which serves no purpose on a SQLServer based system.  You should also disable all AV
    scanning of SQLServer folders as this can create performance issues and may make SQLServer unstable.  Many AV products will skip database files on purpose.
    The indexer will not index SQLServer files unless you have altered its behavior so, mostly, what you are doing is unnecessary.
    Post you issues in the SQLServer forum to get the latest requirements and settings for you implementation.
    Again thisis not a scripting issue and it should not bemanaged via a  script.  It is a deployment issue and should bemanaged in that way.  YOu can use PowerShell V4 and later DSC SDK to set a standard "Desired State" for you SQLServers. 
    Use of DSC with  SQLServer should also be worked out with the SQLServer forum MVPs and others there.
    ¯\_(ツ)_/¯

  • Is there a way to sync my IPTC Core "date created" with my File Properties "Date File Created" for m

    I am working with a massive file of images and part of the issue is that I need to match the Date Create in the IPTC Core to that of the File Properties "Date File Created" for each image. Is there a way to do that automatically?

    The date data is complex.  Read through this post and see if it sheds any light on your question.  http://forums.adobe.com/thread/1171910

  • I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    Hold down the Option key while you boot your Mac. Then, it should show you a selection of devices. Click your flash drive and it will boot from that.

  • File Properties: Document Kind... Where Does it Come From?

    In Bridge's metadata subsection "File Properties", what exactly
    is "Document Kind"? Is it synonymous with the file's mime type?
    I've read through Adobe's XMP specification document (http://partners.adobe.com/public/developer/xmp/sdk/index.html) and I've seen many of Adobe's XMP schemas and data elements defined there, but I can't find where "Document Kind" is defined.
    The closest I come is page 39 where the XMP specification notes that the dublin core schema has a property called "format" with a value of "MIMEType". Is "dc:format" synonymous with "file properties: document kind"?
    Thanks for any help.

    dont mind but please tell me how do u communicate with computer ports...
    u can mail any material at [email protected]
    thanks

  • Visual Studio Projects Not Showing FileVesion Leading Zeroes in File Properties

    I created a simple Visual Studio 2013 windows form application setting the AssemblyInfo.cs file as show below.
    // You can specify all the values or you can default the Build and Revision Numbers
    // by using the '*' as shown below:
    // [assembly: AssemblyVersion("1.0.*")]
    [assembly: AssemblyVersion("1.0.0.0227")]
    [assembly: AssemblyFileVersion("1.0.0.0227")]
    [assembly: AssemblyInformationalVersion("0.0.0.0227")]
    I built the application and went to the Windows File Explorer and brought up the file properties. What I see is that the product version showing the leading zeros, but the file version field does not show the leading zeros.
    It appears to be a bug either with Visual Studio or with Windows. Which one is it and is there a fix?

    Hi Sarah,
    We can't see the screenshot. Do you mean you use Windows Explorer to browse to the AssemblyInfo.cs file and check the property?
    If you change the product version or the file version from the AssemblyInfo.cs file, you need to firstly rebuild the assembly, then if you go to the debug/release folder, check the property of the assembly file, the Details tab will show you the corresponding
    changes of these properties. It's the assembly property but not the cs file property.
    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.
    Click
    HERE to participate the survey.

  • Adobe Bridge CS 4 missing file properties

    I'm working with photoshop files (CS 4) and a few seem to have dropped some of the metadata from the file properties in the bridge browser. Dimensions, Resolution, Bit depth, and Color Mode are missing, and the Color Space is listed as Untagged, even though it is in fact tagged as Adobe 1998 in the Photoshop file. It's as if I inadvertently hit it a quick key to dump the information, as it has only occurred on a couple of files. The thumbnail appears smaller too. Any ideas?

    I tried all of the above to no avail. I saved a copy in another folder and the file still had the diminished thumbnail and missing data. I added another layer (the files contain many layers and adjustment layers) to the file, cropped and re-saved and it picked up the missing data on the new version. I made some benign changes on my original, but alas it didn't work.
    When I get a chance I'll do some more testing on this. It may have something to do with I import certain layers. I have been flowing layers in from both Aperture and Bridge, and from the latter, sometimes as smart objects. So maybe there is something going on there.
    Except for this minor glitch, and some more serious PS stability issues, I am preferring the Bridge/Photoshop workflow to the Aperture/Photoshop workflow, and I'm thinking of jettisoning Aperture altogether in favor of the "browser" method of managing files.
    I appreciate all the suggestions and will get back to this problem soon. But for know I have to meet a deadline.

Maybe you are looking for

  • PDF Attachments Removed from Mac Mail, show up in .Mac webmail

    I have two clients that receive autogenerated PDFs from our ColdFusion server to their .Mac mail account. They had no problems receiving these attachment PDFs with Tiger, this problem is new with the Leopard 10.5+ operating system. These e-mails have

  • Hp officejet 6500

    I'm trying to set up the printer wirelessly via the wizard to connect to my network.  My network/SSID's password is composed of a bunch of numbers.  When I type the password, the keypad defaults to alpha.  P{lease advise how I can out in the numbers.

  • EPM 11.1.1.3 Shared Services Configuration help needed

    Hi, I am currently running into issues when trying to configure Shared Services via the EPM System Configurator 11.1.1.3. I've installed Weblogic 9.3 MP3 with all of the default options (including establishing Node Manager as a service). I've also cr

  • Sun Studio creator & Liferay

    Hai All I need a help badly as i'm working with Sun Studio Creator,Liferay,Tomcat 5.5,SQL Server When i deploy my portlet to Liferay It Works fine but if i'm trying to gothrough the tabs its getting error can anyone help me Thanks

  • 10g db consloe

    Hello . I have 3 node Oracle 10g RAC on red hat linux. This morning , on my second node , database control on HOME tab is not showing Host CPU and Active sessions graphs. Below them it says: no data is curentlly available . Does anyone know how to fi