設定檢視、排序、分組复制代码
- $Pic = "C:\new\img0.jpg"
- $FolderPath = Split-Path $Pic
- $FileName = Split-Path $pic -Leaf
- $Shell = new-object -com "shell.application"
- $File = $Shell.NameSpace($FolderPath).ParseName($FileName)
- #向右旋轉(Win8)
- $File.InvokeVerb("rotate90")
- #向左旋轉(Win8)
- $File.InvokeVerb("rotate270")
- #設定桌布 (win8)
- #WallpaperStyle
- #並排 0 TileWallpaper只有並排要設 1
- #置中 0
- #延展 2
- #全螢幕 6
- #填滿 10
- Set-ItemProperty 'HKCU:\Control Panel\Desktop' -Name "WallpaperStyle" -Value "0"
- Set-ItemProperty 'HKCU:\Control Panel\Desktop' -Name "TileWallpaper" -Value "0"
- $File.verbs() | ?{ $_.name -like "*(&B)" } | %{ $_.doit() }
- # For 英文版 Windows
- #$File.verbs() | ?{ $_.name -like "Set as desktop &background" } | %{ $_.doit() }
- sleep 2
取得圖片屬性(GetDetailsOf)复制代码
- $Pic = "C:\new\img0.jpg"
- $FolderPath = Split-Path $Pic
- $FolderPath = $FolderPath -replace '\\' , '/'
- $Shell = new-object -com "shell.application"
- $Shell.Open($FolderPath)
- $Win = $Shell.Windows() | ? {$_.LocationURL -like "*$FolderPath" } | select -First 1
- # 1 中圖示
- # 2 中圖示
- # 3 清單
- # 4 詳細資料
- # 5 中圖示 (xp:縮圖)
- # 6 並排
- # 7 中圖示 (xp:影片)
- # 8 內容
- $Win.Document.CurrentViewMode = 7
- #小圖示(16)、中圖示(48)、大圖示(96)、超大圖示(256)
- #當CurrentViewMode的值是中圖示,設定IconSize才有效 (win8)
- $Win.Document.IconSize = 256
- #====================================================================
- #排序方式 → 名稱 → 遞增(win8) 二選一
- $win.Document.SortColumns = "prop:name"
- $win.Document.SortColumns = "prop:System.ItemNameDisplay"
- #排序方式 → 名稱 → 遞減(win8) 二選一
- $win.Document.SortColumns = "prop:-name"
- $win.Document.SortColumns = "prop:-System.ItemNameDisplay"
- #排序方式 → 修改日期 → 遞減(win8) 二選一
- $win.Document.SortColumns = "prop:-write"
- $win.Document.SortColumns = "prop:-System.DateModified"
- #排序方式 → 修改日期 → 遞增 (沒反應)
- $win.Document.SortColumns = "prop:write"
- $win.Document.SortColumns = "prop:System.DateModified"
- #=======================================================================
- #分組方式 → 名稱(win8)
- $win.Document.GroupBy = "System.ItemNameDisplay"
- #分組方式 → 類型(win8)
- $win.Document.GroupBy = "System.ItemTypeText"
- #不分組(win8)
- $win.Document.GroupBy = "System.Null"
結果复制代码
- #如果要取得英文版本
- #chcp 437
- $Pic = "C:\new\img0.jpg"
- $FolderPath = Split-Path $Pic
- $FileName = Split-Path $pic -Leaf
- $Shell = new-object -com "shell.application"
- $Folder = $Shell.NameSpace($FolderPath)
- $File = $Folder.ParseName($FileName)
- -1..300 | %{
- "$_ `t" + $Folder.GetDetailsOf( "" ,$_) + "`t`t" + $Folder.GetDetailsOf($File,$_)
- } > File-GetDetailsOf.txt
- Invoke-Item File-GetDetailsOf.txt
-1 項目類型: JPG 檔案
評等: 未評等
尺寸: 1920 x 1200
大小: 424 KB
0 名稱 img0
1 大小 424 KB
2 項目類型 JPG 檔案
3 修改日期 2012/7/7 上午 10:00
略
复制代码
- $Pic = "C:\new\img0.jpg"
- $FolderPath = Split-Path $Pic
- $FileName = Split-Path $pic -Leaf
- $Shell = new-object -com "shell.application"
- $File = $Shell.NameSpace($FolderPath).ParseName($FileName)
- #取得尺寸 W x H
- $File.ExtendedProperty("Dimensions")
- #取得尺寸 W x H (win8)
- $File.ExtendedProperty("System.Image.Dimensions")
- #取得拍攝日期
- $File.ExtendedProperty("WhenTaken")
- #取得拍攝日期 (win8)
- $File.ExtendedProperty("System.Photo.DateTaken")
复制代码
- 主檔名 Name
- (win8是檔名)
- 類型 Type
- 大小 Size
- 屬性 Attributes
- Infotip
- 建立日期 Create
- ( UTC + 0 )
- 修改日期 Write
- ( UTC + 0 )
- 作者 DocAuthor
- 標題 DocTitle
- 演出者 Artist
- 專輯標題 Album
- 時間長度 Duration
- (單位100ns)
- 年份 Year
- 曲目 Track
- 位元率 Bitrate
- 保護 Protected
- 尺寸 W x H Dimensions
- 拍照日期 WhenTaken
- 相機型號 CameraModel
- ==========================================================
- http://msdn.microsoft.com/en-us/library/windows/desktop/dd561977%28v=vs.85%29.aspx
- Audio
- 1:mono 2:stereo System.Audio.ChannelCount
- System.Audio.Compression
- 位元速率 System.Audio.EncodingBitrate
- System.Audio.Format
- System.Audio.IsVariableBitRate
- System.Audio.PeakValue
- 音訊取樣率 System.Audio.SampleRate
- System.Audio.SampleSize
- System.Audio.StreamName
- System.Audio.StreamNumber
- Calendar
- System.Calendar.Duration
- System.Calendar.IsOnline
- System.Calendar.IsRecurring
- System.Calendar.Location
- System.Calendar.OptionalAttendeeAddresses
- System.Calendar.OptionalAttendeeNames
- System.Calendar.OrganizerAddress
- System.Calendar.OrganizerName
- System.Calendar.ReminderTime
- System.Calendar.RequiredAttendeeAddresses
- System.Calendar.RequiredAttendeeNames
- System.Calendar.Resources
- System.Calendar.ResponseStatus
- System.Calendar.ShowTimeAs
- System.Calendar.ShowTimeAsText
- Communication
- System.Communication.AccountName
- System.Communication.DateItemExpires
- System.Communication.FollowupIconIndex
- System.Communication.HeaderItem
- System.Communication.PolicyTag
- System.Communication.SecurityFlags
- System.Communication.Suffix
- System.Communication.TaskStatus
- System.Communication.TaskStatusText
- Computer
- System.Computer.DecoratedFreeSpace
- Contact
- System.Contact.Anniversary
- System.Contact.AssistantName
- System.Contact.AssistantTelephone
- System.Contact.Birthday
- System.Contact.BusinessAddress
- System.Contact.BusinessAddressCity
- System.Contact.BusinessAddressCountry
- System.Contact.BusinessAddressPostalCode
- System.Contact.BusinessAddressPostOfficeBox
- System.Contact.BusinessAddressState
- System.Contact.BusinessAddressStreet
- System.Contact.BusinessFaxNumber
- System.Contact.BusinessHomePage
- System.Contact.BusinessTelephone
- System.Contact.CallbackTelephone
- System.Contact.CarTelephone
- System.Contact.Children
- System.Contact.CompanyMainTelephone
- System.Contact.Department
- System.Contact.EmailAddress
- System.Contact.EmailAddress2
- System.Contact.EmailAddress3
- System.Contact.EmailAddresses
- System.Contact.EmailName
- System.Contact.FileAsName
- System.Contact.FirstName
- System.Contact.FullName
- System.Contact.Gender
- System.Contact.GenderValue
- System.Contact.Hobbies
- System.Contact.HomeAddress
- System.Contact.HomeAddressCity
- System.Contact.HomeAddressCountry
- System.Contact.HomeAddressPostalCode
- System.Contact.HomeAddressPostOfficeBox
- System.Contact.HomeAddressState
- System.Contact.HomeAddressStreet
- System.Contact.HomeFaxNumber
- System.Contact.HomeTelephone
- System.Contact.IMAddress
- System.Contact.Initials
- System.Contact.JA.CompanyNamePhonetic
- System.Contact.JA.FirstNamePhonetic
- System.Contact.JA.LastNamePhonetic
- System.Contact.JobTitle
- System.Contact.Label
- System.Contact.LastName
- System.Contact.MailingAddress
- System.Contact.MiddleName
- System.Contact.MobileTelephone
- System.Contact.NickName
- System.Contact.OfficeLocation
- System.Contact.OtherAddress
- System.Contact.OtherAddressCity
- System.Contact.OtherAddressCountry
- System.Contact.OtherAddressPostalCode
- System.Contact.OtherAddressPostOfficeBox
- System.Contact.OtherAddressState
- System.Contact.OtherAddressStreet
- System.Contact.PagerTelephone
- System.Contact.PersonalTitle
- System.Contact.PrimaryAddressCity
- System.Contact.PrimaryAddressCountry
- System.Contact.PrimaryAddressPostalCode
- System.Contact.PrimaryAddressPostOfficeBox
- System.Contact.PrimaryAddressState
- System.Contact.PrimaryAddressStreet
- System.Contact.PrimaryEmailAddress
- System.Contact.PrimaryTelephone
- System.Contact.Profession
- System.Contact.SpouseName
- System.Contact.Suffix
- System.Contact.TelexNumber
- System.Contact.TTYTDDTelephone
- System.Contact.WebPage
- Devices
- System.Device.PrinterURL
- System.DeviceInterface.PrinterDriverDirectory
- System.DeviceInterface.PrinterDriverName
- System.DeviceInterface.PrinterName
- System.DeviceInterface.PrinterPortName
- System.Devices.BatteryLife
- System.Devices.BatteryPlusCharging
- System.Devices.BatteryPlusChargingText
- System.Devices.Category
- System.Devices.CategoryGroup
- System.Devices.CategoryPlural
- System.Devices.ChargingState
- System.Devices.Connected
- System.Devices.ContainerId
- System.Devices.DefaultTooltip
- System.Devices.DeviceDescription1
- System.Devices.DeviceDescription2
- System.Devices.DiscoveryMethod
- System.Devices.FriendlyName
- System.Devices.FunctionPaths
- System.Devices.InterfacePaths
- System.Devices.IsDefault
- System.Devices.IsNetworkConnected
- System.Devices.IsShared
- System.Devices.IsSoftwareInstalling
- System.Devices.LaunchDeviceStageFromExplorer
- System.Devices.LocalMachine
- System.Devices.Manufacturer
- System.Devices.MissedCalls
- System.Devices.ModelName
- System.Devices.ModelNumber
- System.Devices.NetworkedTooltip
- System.Devices.NetworkName
- System.Devices.NetworkType
- System.Devices.NewPictures
- System.Devices.Notification
- System.Devices.Notifications.LowBattery
- System.Devices.Notifications.MissedCall
- System.Devices.Notifications.NewMessage
- System.Devices.Notifications.NewVoicemail
- System.Devices.Notifications.StorageFull
- System.Devices.Notifications.StorageFullLinkText
- System.Devices.NotificationStore
- System.Devices.NotWorkingProperly
- System.Devices.Paired
- System.Devices.PrimaryCategory
- System.Devices.Roaming
- System.Devices.SafeRemovalRequired
- System.Devices.SharedTooltip
- System.Devices.SignalStrength
- System.Devices.Status1
- System.Devices.Status2
- System.Devices.StorageCapacity
- System.Devices.StorageFreeSpace
- System.Devices.StorageFreeSpacePercent
- System.Devices.TextMessages
- System.Devices.Voicemail
- Digital Rights Management
- System.DRM.DatePlayExpires
- System.DRM.DatePlayStarts
- System.DRM.Description
- 受保護 System.DRM.IsProtected
- System.DRM.PlayCount
- Document
- System.Document.ByteCount
- 字元數 System.Document.CharacterCount
- System.Document.ClientID
- System.Document.Contributor
- 已建立的本文 System.Document.DateCreated
- System.Document.DatePrinted
- 上次儲存日期 System.Document.DateSaved
- System.Document.Division
- System.Document.DocumentID
- System.Document.HiddenSlideCount
- 上次存檔者 System.Document.LastAuthor
- 行數 System.Document.LineCount
- System.Document.Manager
- System.Document.MultimediaClipCount
- System.Document.NoteCount
- 頁數 System.Document.PageCount
- 段落數 System.Document.ParagraphCount
- System.Document.PresentationFormat
- 修訂編號 System.Document.RevisionNumber
- System.Document.Security
- System.Document.SlideCount
- 範本 System.Document.Template
- 總共編輯時間 System.Document.TotalEditingTime
- (單位100ns)
- System.Document.Version
- 字數統計 System.Document.WordCount
- GPS
- 高度,海拔 System.GPS.Altitude
- System.GPS.AltitudeDenominator
- System.GPS.AltitudeNumerator
- System.GPS.AltitudeRef
- System.GPS.AreaInformation
- System.GPS.Date
- System.GPS.DestBearing
- System.GPS.DestBearingDenominator
- System.GPS.DestBearingNumerator
- System.GPS.DestBearingRef
- System.GPS.DestDistance
- System.GPS.DestDistanceDenominator
- System.GPS.DestDistanceNumerator
- System.GPS.DestDistanceRef
- System.GPS.DestLatitude
- System.GPS.DestLatitudeDenominator
- System.GPS.DestLatitudeNumerator
- System.GPS.DestLatitudeRef
- System.GPS.DestLongitude
- System.GPS.DestLongitudeDenominator
- System.GPS.DestLongitudeNumerator
- System.GPS.DestLongitudeRef
- System.GPS.Differential
- System.GPS.DOP
- System.GPS.DOPDenominator
- System.GPS.DOPNumerator
- System.GPS.ImgDirection
- System.GPS.ImgDirectionDenominator
- System.GPS.ImgDirectionNumerator
- System.GPS.ImgDirectionRef
- 緯度 System.GPS.Latitude
- System.GPS.LatitudeDenominator
- System.GPS.LatitudeNumerator
- 北緯、南緯 System.GPS.LatitudeRef
- 經度 System.GPS.Longitude
- System.GPS.LongitudeDenominator
- System.GPS.LongitudeNumerator
- 東經、西經 System.GPS.LongitudeRef
- System.GPS.MapDatum
- System.GPS.MeasureMode
- System.GPS.ProcessingMethod
- System.GPS.Satellites
- System.GPS.Speed
- System.GPS.SpeedDenominator
- System.GPS.SpeedNumerator
- System.GPS.SpeedRef
- System.GPS.Status
- System.GPS.Track
- System.GPS.TrackDenominator
- System.GPS.TrackNumerator
- System.GPS.TrackRef
- System.GPS.VersionID
- Identity
- System.Identity.InternetSid
- System.Identity.LogonStatusString
- System.Identity.PrimarySid
- System.Identity.ProviderData
- System.Identity.QualifiedUserName
- Image
- 位元深度 System.Image.BitDepth
- System.Image.ColorSpace
- System.Image.CompressedBitsPerPixel
- System.Image.CompressedBitsPerPixelDenominator
- System.Image.CompressedBitsPerPixelNumerator
- System.Image.Compression
- System.Image.CompressionText
- 尺寸 W x H System.Image.Dimensions
- 水平解析度 System.Image.HorizontalResolution
- 寬度 System.Image.HorizontalSize
- System.Image.ImageID
- System.Image.ResolutionUnit
- 垂直解析度 System.Image.VerticalResolution
- 高度 System.Image.VerticalSize
- Journal
- System.Journal.Contacts
- System.Journal.EntryType
- Link
- System.Link.Arguments
- System.Link.Comment
- System.Link.DateVisited
- System.Link.Description
- System.Link.Status
- System.Link.TargetExtension
- 捷徑目標 System.Link.TargetParsingPath
- System.Link.TargetSFGAOFlags
- Media
- System.Media.AuthorUrl
- System.Media.AverageLevel
- System.Media.ClassPrimaryID
- System.Media.ClassSecondaryID
- System.Media.CollectionGroupID
- System.Media.CollectionID
- System.Media.ContentDistributor
- System.Media.ContentID
- System.Media.CreatorApplication
- System.Media.CreatorApplicationVersion
- System.Media.DateEncoded
- System.Media.DateReleased
- 長度(單位100ns) System.Media.Duration
- System.Media.DVDID
- System.Media.EncodedBy
- System.Media.EncodingSettings
- System.Media.FrameCount
- System.Media.MCDI
- System.Media.MetadataContentProvider
- System.Media.Producer
- System.Media.PromotionUrl
- System.Media.ProtectionType
- System.Media.ProviderRating
- System.Media.ProviderStyle
- System.Media.Publisher
- System.Media.SubscriptionContentId
- System.Media.SubTitle
- System.Media.UniqueFileIdentifier
- System.Media.UserNoAutoInfo
- System.Media.UserWebUrl
- System.Media.Writer
- 年份 System.Media.Year
- Message
- System.Message.AttachmentContents
- System.Message.AttachmentNames
- System.Message.BccAddress
- System.Message.BccName
- System.Message.CcAddress
- System.Message.CcName
- System.Message.ConversationID
- System.Message.ConversationIndex
- System.Message.DateReceived
- System.Message.DateSent
- System.Message.Flags
- System.Message.FromAddress
- System.Message.FromName
- System.Message.HasAttachments
- System.Message.IsFwdOrReply
- System.Message.MessageClass
- System.Message.ProofInProgress
- System.Message.SenderAddress
- System.Message.SenderName
- System.Message.Store
- System.Message.ToAddress
- System.Message.ToDoFlags
- System.Message.ToDoTitle
- System.Message.ToName
- Music
- 專輯演出者 System.Music.AlbumArtist
- System.Music.AlbumID
- 專輯 System.Music.AlbumTitle
- 演出者 System.Music.Artist
- System.Music.BeatsPerMinute
- 作曲者 System.Music.Composer
- System.Music.Conductor
- System.Music.ContentGroupDescription
- System.Music.DisplayArtist
- 內容類型 System.Music.Genre
- System.Music.InitialKey
- System.Music.IsCompilation
- System.Music.Lyrics
- System.Music.Mood
- System.Music.PartOfSet
- System.Music.Period
- System.Music.SynchronizedLyrics
- 第幾首 System.Music.TrackNumber
- Note
- System.Note.Color
- System.Note.ColorText
- Photo
- System.Photo.Aperture
- System.Photo.ApertureDenominator
- System.Photo.ApertureNumerator
- System.Photo.Brightness
- System.Photo.BrightnessDenominator
- System.Photo.BrightnessNumerator
- 相機製造商 System.Photo.CameraManufacturer
- 相機型號 System.Photo.CameraModel
- System.Photo.CameraSerialNumber
- System.Photo.Contrast
- System.Photo.ContrastText
- 拍攝日期 System.Photo.DateTaken
- 數位縮放 System.Photo.DigitalZoom
- System.Photo.DigitalZoomDenominator
- System.Photo.DigitalZoomNumerator
- System.Photo.Event
- EXIF 版本 System.Photo.EXIFVersion
- 曝光偏差 System.Photo.ExposureBias
- System.Photo.ExposureBiasDenominator
- System.Photo.ExposureBiasNumerator
- System.Photo.ExposureIndex
- System.Photo.ExposureIndexDenominator
- System.Photo.ExposureIndexNumerator
- System.Photo.ExposureProgram
- System.Photo.ExposureProgramText
- 曝光時間 System.Photo.ExposureTime
- System.Photo.ExposureTimeDenominator
- System.Photo.ExposureTimeNumerator
- System.Photo.Flash
- System.Photo.FlashEnergy
- System.Photo.FlashEnergyDenominator
- System.Photo.FlashEnergyNumerator
- System.Photo.FlashManufacturer
- System.Photo.FlashModel
- System.Photo.FlashText
- System.Photo.FNumber
- System.Photo.FNumberDenominator
- System.Photo.FNumberNumerator
- 焦距 System.Photo.FocalLength
- System.Photo.FocalLengthDenominator
- System.Photo.FocalLengthInFilm
- System.Photo.FocalLengthNumerator
- System.Photo.FocalPlaneXResolution
- System.Photo.FocalPlaneXResolutionDenominator
- System.Photo.FocalPlaneXResolutionNumerator
- System.Photo.FocalPlaneYResolution
- System.Photo.FocalPlaneYResolutionDenominator
- System.Photo.FocalPlaneYResolutionNumerator
- System.Photo.GainControl
- System.Photo.GainControlDenominator
- System.Photo.GainControlNumerator
- System.Photo.GainControlText
- ISO 速度 System.Photo.ISOSpeed
- System.Photo.LensManufacturer
- System.Photo.LensModel
- 光源 System.Photo.LightSource
- System.Photo.MakerNote
- System.Photo.MakerNoteOffset
- System.Photo.MaxAperture
- System.Photo.MaxApertureDenominator
- System.Photo.MaxApertureNumerator
- 測光模式 System.Photo.MeteringMode
- System.Photo.MeteringModeText
- 方向 System.Photo.Orientation
- System.Photo.OrientationText
- System.Photo.PeopleNames
- System.Photo.PhotometricInterpretation
- System.Photo.PhotometricInterpretationText
- System.Photo.ProgramMode
- System.Photo.ProgramModeText
- System.Photo.RelatedSoundFile
- System.Photo.Saturation
- System.Photo.SaturationText
- System.Photo.Sharpness
- System.Photo.SharpnessText
- System.Photo.ShutterSpeed
- System.Photo.ShutterSpeedDenominator
- System.Photo.ShutterSpeedNumerator
- System.Photo.SubjectDistance
- System.Photo.SubjectDistanceDenominator
- System.Photo.SubjectDistanceNumerator
- System.Photo.TagViewAggregate
- System.Photo.TranscodedForSync
- 白平衡 System.Photo.WhiteBalance
- System.Photo.WhiteBalanceText
- PropGroup
- System.PropGroup.Advanced
- System.PropGroup.Audio
- System.PropGroup.Calendar
- System.PropGroup.Camera
- System.PropGroup.Contact
- System.PropGroup.Content
- System.PropGroup.Description
- System.PropGroup.FileSystem
- System.PropGroup.General
- System.PropGroup.GPS
- System.PropGroup.Image
- System.PropGroup.Media
- System.PropGroup.MediaAdvanced
- System.PropGroup.Message
- System.PropGroup.Music
- System.PropGroup.Origin
- System.PropGroup.PhotoAdvanced
- System.PropGroup.RecordedTV
- System.PropGroup.Video
- PropList
- System.PropList.ConflictPrompt
- System.PropList.ContentViewModeForBrowse
- System.PropList.ContentViewModeForSearch
- System.PropList.ExtendedTileInfo
- System.PropList.FileOperationPrompt
- System.PropList.FullDetails
- System.PropList.InfoTip
- System.PropList.NonPersonal
- System.PropList.PreviewDetails
- System.PropList.PreviewTitle
- System.PropList.QuickTip
- System.PropList.TileInfo
- System.PropList.XPDetailsPanel
- RecordedTV
- System.RecordedTV.ChannelNumber
- System.RecordedTV.Credits
- System.RecordedTV.DateContentExpires
- System.RecordedTV.EpisodeName
- System.RecordedTV.IsATSCContent
- System.RecordedTV.IsClosedCaptioningAvailable
- System.RecordedTV.IsDTVContent
- System.RecordedTV.IsHDContent
- System.RecordedTV.IsRepeatBroadcast
- System.RecordedTV.IsSAP
- System.RecordedTV.NetworkAffiliation
- System.RecordedTV.OriginalBroadcastDate
- System.RecordedTV.ProgramDescription
- System.RecordedTV.RecordingTime
- System.RecordedTV.StationCallSign
- System.RecordedTV.StationName
- Search
- System.Search.AutoSummary
- System.Search.ContainerHash
- System.Search.Contents
- System.Search.EntryID
- System.Search.ExtendedProperties
- System.Search.GatherTime
- System.Search.HitCount
- System.Search.IsClosedDirectory
- System.Search.IsFullyContained
- System.Search.QueryFocusedSummary
- System.Search.QueryFocusedSummaryWithFallback
- System.Search.Rank
- System.Search.Store
- System.Search.UrlToIndex
- System.Search.UrlToIndexWithModificationTime
- Shell
- System.DescriptionID
- System.InfoTipText
- System.InternalName
- System.Link.TargetSFGAOFlagsStrings
- System.Link.TargetUrl
- System.NamespaceCLSID
- System.Shell.SFGAOFlagsStrings
- Software
- System.AppUserModel.ExcludeFromShowInNewInstall
- System.AppUserModel.ID
- System.AppUserModel.IsDestListSeparator
- System.AppUserModel.PreventPinning
- System.AppUserModel.RelaunchCommand
- System.AppUserModel.RelaunchDisplayNameResource
- System.AppUserModel.RelaunchIconResource
- System.Software.DateLastUsed
- System.Software.ProductName
- Sync
- System.Sync.Comments
- System.Sync.ConflictDescription
- System.Sync.ConflictFirstLocation
- System.Sync.ConflictSecondLocation
- System.Sync.HandlerCollectionID
- System.Sync.HandlerID
- System.Sync.HandlerName
- System.Sync.HandlerType
- System.Sync.HandlerTypeLabel
- System.Sync.ItemID
- System.Sync.ItemName
- System.Sync.ProgressPercentage
- System.Sync.State
- System.Sync.Status
- System
- System.AcquisitionID
- 什麼程式產生的 System.ApplicationName
- 作者 System.Author
- 磁碟容量 System.Capacity
- (C:磁碟容量,檔案如果在C: )
- System.Category
- 註解 System.Comment
- 公司 System.Company
- 電腦 System.ComputerName
- System.ContainedItems
- System.ContentStatus
- System.ContentType
- System.Copyright
- 存取日期 System.DateAccessed
- ( UTC + 0 )
- System.DateAcquired
- System.DateArchived
- System.DateCompleted
- 建立日期 System.DateCreated
- ( UTC + 0 )
- System.DateImported
- 修改日期 System.DateModified
- ( UTC + 0 )
- System.DueDate
- System.EndDate
- System.FileAllocationSize
- 屬性 System.FileAttributes
- System.FileCount
- System.FileDescription
- 副檔名 System.FileExtension
- System.FileFRN
- 檔名 System.FileName
- 擁有者 System.FileOwner
- System.FileVersion
- System.FindData
- System.FlagColor
- System.FlagColorText
- System.FlagStatus
- System.FlagStatusText
- 可用空間 System.FreeSpace
- (C:磁碟容量,檔案如果在C: )
- System.FullText
- System.Identity
- System.Identity.Blob
- System.Identity.DisplayName
- System.Identity.IsMeIdentity
- System.Identity.PrimaryEmailAddress
- System.Identity.ProviderID
- System.Identity.UniqueID
- System.Identity.UserName
- System.IdentityProvider.Name
- System.IdentityProvider.Picture
- System.ImageParsingName
- System.Importance
- System.ImportanceText
- System.IsAttachment
- System.IsDefaultNonOwnerSaveLocation
- System.IsDefaultSaveLocation
- System.IsDeleted
- System.IsEncrypted
- System.IsFlagged
- System.IsFlaggedComplete
- System.IsIncomplete
- System.IsLocationSupported
- System.IsPinnedToNameSpaceTree
- System.IsRead
- System.IsSearchOnlyItem
- System.IsSendToTarget
- System.IsShared
- System.ItemAuthors
- System.ItemClassType
- System.ItemDate
- 資料夾名稱 System.ItemFolderNameDisplay
- 資料夾路徑 System.ItemFolderPathDisplay
- System.ItemFolderPathDisplayNarrow
- 檔名 System.ItemName
- 檔名 System.ItemNameDisplay
- System.ItemNamePrefix
- System.ItemParticipants
- 路徑 System.ItemPathDisplay
- System.ItemPathDisplayNarrow
- 類型 System.ItemType
- 類型 System.ItemTypeText
- System.ItemUrl
- 標籤 System.Keywords
- 種類 System.Kind
- System.KindText
- System.Language
- System.LayoutPattern.ContentViewModeForBrowse
- System.LayoutPattern.ContentViewModeForSearch
- System.MileageInformation
- MIMEType System.MIMEType
- System.Null
- System.OfflineAvailability
- System.OfflineStatus
- System.OriginalFileName
- System.OwnerSID
- System.ParentalRating
- System.ParentalRatingReason
- System.ParentalRatingsOrganization
- System.ParsingBindContext
- System.ParsingName
- System.ParsingPath
- 認知類型 System.PerceivedType
- 已使用磁碟空間 System.PercentFull
- System.Priority
- System.PriorityText
- System.Project
- System.ProviderItemID
- System.Rating
- System.RatingText
- System.Sensitivity
- System.SensitivityText
- System.SFGAOFlags
- System.SharedWith
- System.ShareUserRating
- System.SharingStatus
- System.Shell.OmitFromView
- 評等(幾顆星) System.SimpleRating
- 檔案大小 System.Size
- System.SoftwareUsed
- System.SourceItem
- System.StartDate
- System.Status
- System.Subject
- System.Thumbnail
- System.ThumbnailCacheId
- System.ThumbnailStream
- 標題 System.Title
- System.TotalFileSize
- System.Trademarks
- Task
- System.Task.BillingInformation
- System.Task.CompletionStatus
- System.Task.Owner
- Video
- System.Video.Compression
- System.Video.Director
- video位元速率 System.Video.EncodingBitrate
- System.Video.FourCC
- 畫面高度 System.Video.FrameHeight
- 每秒Frame數 System.Video.FrameRate
- 畫面寬度 System.Video.FrameWidth
- System.Video.HorizontalAspectRatio
- System.Video.SampleSize
- System.Video.StreamName
- System.Video.StreamNumber
- 總位元速率 System.Video.TotalBitrate
- System.Video.TranscodedForSync
- System.Video.VerticalAspectRatio
- Volume
- System.Volume.FileSystem
- System.Volume.IsMappedDrive
- System.Volume.IsRoot
欢迎光临 批处理之家 (http://bbs.bathome.net/) | Powered by Discuz! 7.2 |