{"id":453,"date":"2011-09-15T19:37:08","date_gmt":"2011-09-15T10:37:08","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=453"},"modified":"2011-09-15T19:38:13","modified_gmt":"2011-09-15T10:38:13","slug":"windows-8wmi%e3%81%a7os%e3%81%ae%e6%83%85%e5%a0%b1%e3%82%92%e5%8f%96%e5%be%97%e3%81%97%e3%81%a6%e3%81%bf%e3%81%be%e3%81%97%e3%81%9f%e3%80%82","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=453","title":{"rendered":"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002"},"content":{"rendered":"<p>WMI\u3067Windows 8 Developer Preview(\u82f1\u8a9e\u7248\u30fb64\u30d3\u30c3\u30c8)\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f(VBA)\u3002<br \/>\n<!--more--><\/p>\n<h4>\u25a0 VBA\u30b3\u30fc\u30c9<\/h4>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nPublic Sub Sample()\r\n  Dim colItems As Object\r\n  Dim itm As Object\r\n  \r\n  On Error Resume Next\r\n  Set colItems = CreateObject(&quot;WbemScripting.SWbemLocator&quot;).ConnectServer.ExecQuery(&quot;Select * from Win32_OperatingSystem&quot;)\r\n  For Each itm In colItems\r\n    Debug.Print &quot;BootDevice:&quot; &amp; itm.BootDevice\r\n    Debug.Print &quot;BuildNumber:&quot; &amp; itm.BuildNumber\r\n    Debug.Print &quot;BuildType:&quot; &amp; itm.BuildType\r\n    Debug.Print &quot;Caption:&quot; &amp; itm.Caption\r\n    Debug.Print &quot;CodeSet:&quot; &amp; itm.CodeSet\r\n    Debug.Print &quot;CountryCode:&quot; &amp; itm.CountryCode\r\n    Debug.Print &quot;CreationClassName:&quot; &amp; itm.CreationClassName\r\n    Debug.Print &quot;CSCreationClassName:&quot; &amp; itm.CSCreationClassName\r\n    Debug.Print &quot;CSDVersion:&quot; &amp; itm.CSDVersion\r\n    Debug.Print &quot;CSName:&quot; &amp; itm.CSName\r\n    Debug.Print &quot;CurrentTimeZone:&quot; &amp; itm.CurrentTimeZone\r\n    Debug.Print &quot;DataExecutionPrevention_32BitApplications:&quot; &amp; itm.DataExecutionPrevention_32BitApplications\r\n    Debug.Print &quot;DataExecutionPrevention_Available:&quot; &amp; itm.DataExecutionPrevention_Available\r\n    Debug.Print &quot;DataExecutionPrevention_Drivers:&quot; &amp; itm.DataExecutionPrevention_Drivers\r\n    Debug.Print &quot;DataExecutionPrevention_SupportPolicy:&quot; &amp; itm.DataExecutionPrevention_SupportPolicy\r\n    Debug.Print &quot;Debug:&quot; &amp; itm.Debug\r\n    Debug.Print &quot;Description:&quot; &amp; itm.Description\r\n    Debug.Print &quot;Distributed:&quot; &amp; itm.Distributed\r\n    Debug.Print &quot;EncryptionLevel:&quot; &amp; itm.EncryptionLevel\r\n    Debug.Print &quot;ForegroundApplicationBoost:&quot; &amp; itm.ForegroundApplicationBoost\r\n    Debug.Print &quot;FreePhysicalMemory:&quot; &amp; itm.FreePhysicalMemory\r\n    Debug.Print &quot;FreeSpaceInPagingFiles:&quot; &amp; itm.FreeSpaceInPagingFiles\r\n    Debug.Print &quot;FreeVirtualMemory:&quot; &amp; itm.FreeVirtualMemory\r\n    Debug.Print &quot;InstallDate:&quot; &amp; itm.InstallDate\r\n    Debug.Print &quot;LargeSystemCache:&quot; &amp; itm.LargeSystemCache\r\n    Debug.Print &quot;LastBootUpTime:&quot; &amp; itm.LastBootUpTime\r\n    Debug.Print &quot;LocalDateTime:&quot; &amp; itm.LocalDateTime\r\n    Debug.Print &quot;Locale:&quot; &amp; itm.Locale\r\n    Debug.Print &quot;Manufacturer:&quot; &amp; itm.Manufacturer\r\n    Debug.Print &quot;MaxNumberOfProcesses:&quot; &amp; itm.MaxNumberOfProcesses\r\n    Debug.Print &quot;MaxProcessMemorySize:&quot; &amp; itm.MaxProcessMemorySize\r\n    Debug.Print &quot;MUILanguages:&quot; &amp; itm.MUILanguages\r\n    Debug.Print &quot;Name:&quot; &amp; itm.Name\r\n    Debug.Print &quot;NumberOfLicensedUsers:&quot; &amp; itm.NumberOfLicensedUsers\r\n    Debug.Print &quot;NumberOfProcesses:&quot; &amp; itm.NumberOfProcesses\r\n    Debug.Print &quot;NumberOfUsers:&quot; &amp; itm.NumberOfUsers\r\n    Debug.Print &quot;OperatingSystemSKU:&quot; &amp; itm.OperatingSystemSKU\r\n    Debug.Print &quot;Organization:&quot; &amp; itm.Organization\r\n    Debug.Print &quot;OSArchitecture:&quot; &amp; itm.OSArchitecture\r\n    Debug.Print &quot;OSLanguage:&quot; &amp; itm.OSLanguage\r\n    Debug.Print &quot;OSProductSuite:&quot; &amp; itm.OSProductSuite\r\n    Debug.Print &quot;OSType:&quot; &amp; itm.OSType\r\n    Debug.Print &quot;OtherTypeDescription:&quot; &amp; itm.OtherTypeDescription\r\n    Debug.Print &quot;PAEEnabled:&quot; &amp; itm.PAEEnabled\r\n    Debug.Print &quot;PlusProductID:&quot; &amp; itm.PlusProductID\r\n    Debug.Print &quot;PlusVersionNumber:&quot; &amp; itm.PlusVersionNumber\r\n    Debug.Print &quot;PortableOperatingSystem:&quot; &amp; itm.PortableOperatingSystem\r\n    Debug.Print &quot;Primary:&quot; &amp; itm.Primary\r\n    Debug.Print &quot;ProductType:&quot; &amp; itm.ProductType\r\n    Debug.Print &quot;RegisteredUser:&quot; &amp; itm.RegisteredUser\r\n    Debug.Print &quot;SerialNumber:&quot; &amp; itm.SerialNumber\r\n    Debug.Print &quot;ServicePackMajorVersion:&quot; &amp; itm.ServicePackMajorVersion\r\n    Debug.Print &quot;ServicePackMinorVersion:&quot; &amp; itm.ServicePackMinorVersion\r\n    Debug.Print &quot;SizeStoredInPagingFiles:&quot; &amp; itm.SizeStoredInPagingFiles\r\n    Debug.Print &quot;Status:&quot; &amp; itm.Status\r\n    Debug.Print &quot;SuiteMask:&quot; &amp; itm.SuiteMask\r\n    Debug.Print &quot;SystemDevice:&quot; &amp; itm.SystemDevice\r\n    Debug.Print &quot;SystemDirectory:&quot; &amp; itm.SystemDirectory\r\n    Debug.Print &quot;SystemDrive:&quot; &amp; itm.SystemDrive\r\n    Debug.Print &quot;TotalSwapSpaceSize:&quot; &amp; itm.TotalSwapSpaceSize\r\n    Debug.Print &quot;TotalVirtualMemorySize:&quot; &amp; itm.TotalVirtualMemorySize\r\n    Debug.Print &quot;TotalVisibleMemorySize:&quot; &amp; itm.TotalVisibleMemorySize\r\n    Debug.Print &quot;Version:&quot; &amp; itm.Version\r\n    Debug.Print &quot;WindowsDirectory:&quot; &amp; itm.WindowsDirectory\r\n  Next\r\n  Set colItems = Nothing\r\n  On Error GoTo 0\r\nEnd Sub<\/pre>\n<h4>\u25a0 \u7d50\u679c<\/h4>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">BootDevice:\\Device\\HarddiskVolume1\r\nBuildNumber:8102\r\nBuildType:Multiprocessor Free\r\nCaption:Microsoft Windows Developer Preview \r\nCodeSet:932\r\nCountryCode:81\r\nCreationClassName:Win32_OperatingSystem\r\nCSCreationClassName:Win32_ComputerSystem\r\nCSDVersion:\r\nCSName:WIN8PC\r\nCurrentTimeZone:540\r\nDataExecutionPrevention_32BitApplications:True\r\nDataExecutionPrevention_Available:True\r\nDataExecutionPrevention_Drivers:True\r\nDataExecutionPrevention_SupportPolicy:2\r\nDebug:False\r\nDescription:\r\nDistributed:False\r\nEncryptionLevel:256\r\nForegroundApplicationBoost:2\r\nFreePhysicalMemory:2018972\r\nFreeSpaceInPagingFiles:3210264\r\nFreeVirtualMemory:5132032\r\nInstallDate:20110914232533.000000+540\r\nLargeSystemCache:\r\nLastBootUpTime:20110915164505.493335+540\r\nLocalDateTime:20110915191717.920000+540\r\nLocale:0411\r\nManufacturer:Microsoft Corporation\r\nMaxNumberOfProcesses:-1\r\nMaxProcessMemorySize:8589934464\r\nName:Microsoft Windows Developer Preview |C:\\Windows|\\Device\\Harddisk0\\Partition2\r\nNumberOfLicensedUsers:\r\nNumberOfProcesses:51\r\nNumberOfUsers:2\r\nOperatingSystemSKU:74\r\nOrganization:\r\nOSArchitecture:64-bit\r\nOSLanguage:1033\r\nOSProductSuite:256\r\nOSType:18\r\nOtherTypeDescription:\r\nPAEEnabled:\r\nPlusProductID:\r\nPlusVersionNumber:\r\nPortableOperatingSystem:False\r\nPrimary:True\r\nProductType:1\r\nRegisteredUser:kinuasa\r\nSerialNumber:00127-*****-*****-*****\r\nServicePackMajorVersion:0\r\nServicePackMinorVersion:0\r\nSizeStoredInPagingFiles:3210264\r\nStatus:OK\r\nSuiteMask:272\r\nSystemDevice:\\Device\\HarddiskVolume2\r\nSystemDirectory:C:\\Windows\\system32\r\nSystemDrive:C:\r\nTotalSwapSpaceSize:\r\nTotalVirtualMemorySize:6485064\r\nTotalVisibleMemorySize:3274800\r\nVersion:6.2.8102\r\nWindowsDirectory:C:\\Windows<\/pre>\n","protected":false},"excerpt":{"rendered":"WMI\u3067Windows 8 Developer Preview(\u82f1\u8a9e\u7248\u30fb64\u30d3\u30c3\u30c8)\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f(VBA)\u3002","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[25],"tags":[26],"class_list":["post-453","post","type-post","status-publish","format-standard","hentry","category-windows","tag-windows-8"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"WMI\u3067Windows 8 Developer Preview(\u82f1\u8a9e\u7248\u30fb64\u30d3\u30c3\u30c8)\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f(\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"\u304d\u306c\u3042\u3055\"\/>\n\t<meta name=\"google-site-verification\" content=\"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48\" \/>\n\t<meta name=\"keywords\" content=\"windows 8\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=453\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"WMI\u3067Windows 8 Developer Preview(\u82f1\u8a9e\u7248\u30fb64\u30d3\u30c3\u30c8)\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f(\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=453\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2011-09-15T10:37:08+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2011-09-15T10:38:13+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"WMI\u3067Windows 8 Developer Preview(\u82f1\u8a9e\u7248\u30fb64\u30d3\u30c3\u30c8)\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f(\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453#article\",\"name\":\"[Windows 8]WMI\\u3067OS\\u306e\\u60c5\\u5831\\u3092\\u53d6\\u5f97\\u3057\\u3066\\u307f\\u307e\\u3057\\u305f\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"[Windows 8]WMI\\u3067OS\\u306e\\u60c5\\u5831\\u3092\\u53d6\\u5f97\\u3057\\u3066\\u307f\\u307e\\u3057\\u305f\\u3002\",\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"},\"datePublished\":\"2011-09-15T19:37:08+09:00\",\"dateModified\":\"2011-09-15T19:38:13+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453#webpage\"},\"articleSection\":\"Windows\\u95a2\\u9023, Windows 8\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=25#listItem\",\"name\":\"Windows\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=25#listItem\",\"position\":2,\"name\":\"Windows\\u95a2\\u9023\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=25\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453#listItem\",\"name\":\"[Windows 8]WMI\\u3067OS\\u306e\\u60c5\\u5831\\u3092\\u53d6\\u5f97\\u3057\\u3066\\u307f\\u307e\\u3057\\u305f\\u3002\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453#listItem\",\"position\":3,\"name\":\"[Windows 8]WMI\\u3067OS\\u306e\\u60c5\\u5831\\u3092\\u53d6\\u5f97\\u3057\\u3066\\u307f\\u307e\\u3057\\u305f\\u3002\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=25#listItem\",\"name\":\"Windows\\u95a2\\u9023\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1\",\"name\":\"\\u304d\\u306c\\u3042\\u3055\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"\\u304d\\u306c\\u3042\\u3055\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453\",\"name\":\"[Windows 8]WMI\\u3067OS\\u306e\\u60c5\\u5831\\u3092\\u53d6\\u5f97\\u3057\\u3066\\u307f\\u307e\\u3057\\u305f\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"WMI\\u3067Windows 8 Developer Preview(\\u82f1\\u8a9e\\u7248\\u30fb64\\u30d3\\u30c3\\u30c8)\\u306e\\u60c5\\u5831\\u3092\\u53d6\\u5f97\\u3057\\u3066\\u307f\\u307e\\u3057\\u305f(\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=453#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"datePublished\":\"2011-09-15T19:37:08+09:00\",\"dateModified\":\"2011-09-15T19:38:13+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"WMI\u3067Windows 8 Developer Preview(\u82f1\u8a9e\u7248\u30fb64\u30d3\u30c3\u30c8)\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f(","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=453","robots":"max-image-preview:large","keywords":"windows 8","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=453#article","name":"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002","author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"},"datePublished":"2011-09-15T19:37:08+09:00","dateModified":"2011-09-15T19:38:13+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=453#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=453#webpage"},"articleSection":"Windows\u95a2\u9023, Windows 8"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=453#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.ka-net.org\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=25#listItem","name":"Windows\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=25#listItem","position":2,"name":"Windows\u95a2\u9023","item":"https:\/\/www.ka-net.org\/blog\/?cat=25","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=453#listItem","name":"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=453#listItem","position":3,"name":"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=25#listItem","name":"Windows\u95a2\u9023"}}]},{"@type":"Organization","@id":"https:\/\/www.ka-net.org\/blog\/#organization","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","url":"https:\/\/www.ka-net.org\/blog\/"},{"@type":"Person","@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author","url":"https:\/\/www.ka-net.org\/blog\/?author=1","name":"\u304d\u306c\u3042\u3055","image":{"@type":"ImageObject","@id":"https:\/\/www.ka-net.org\/blog\/?p=453#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g","width":96,"height":96,"caption":"\u304d\u306c\u3042\u3055"}},{"@type":"WebPage","@id":"https:\/\/www.ka-net.org\/blog\/?p=453#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=453","name":"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"WMI\u3067Windows 8 Developer Preview(\u82f1\u8a9e\u7248\u30fb64\u30d3\u30c3\u30c8)\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f(","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=453#breadcrumblist"},"author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"creator":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"datePublished":"2011-09-15T19:37:08+09:00","dateModified":"2011-09-15T19:38:13+09:00"},{"@type":"WebSite","@id":"https:\/\/www.ka-net.org\/blog\/#website","url":"https:\/\/www.ka-net.org\/blog\/","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","inLanguage":"ja","publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","og:type":"article","og:title":"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"WMI\u3067Windows 8 Developer Preview(\u82f1\u8a9e\u7248\u30fb64\u30d3\u30c3\u30c8)\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f(","og:url":"https:\/\/www.ka-net.org\/blog\/?p=453","article:published_time":"2011-09-15T10:37:08+00:00","article:modified_time":"2011-09-15T10:38:13+00:00","twitter:card":"summary","twitter:title":"[Windows 8]WMI\u3067OS\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"WMI\u3067Windows 8 Developer Preview(\u82f1\u8a9e\u7248\u30fb64\u30d3\u30c3\u30c8)\u306e\u60c5\u5831\u3092\u53d6\u5f97\u3057\u3066\u307f\u307e\u3057\u305f("},"aioseo_meta_data":{"post_id":"453","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-24 07:00:11","updated":"2022-09-14 05:07:52","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-7j","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/453","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=453"}],"version-history":[{"count":7,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/453\/revisions"}],"predecessor-version":[{"id":460,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/453\/revisions\/460"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=453"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=453"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=453"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}