{"id":2260,"date":"2012-09-12T17:41:58","date_gmt":"2012-09-12T08:41:58","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=2260"},"modified":"2013-08-19T14:15:04","modified_gmt":"2013-08-19T05:15:04","slug":"office%e4%bb%98%e5%b1%9e%e3%81%aevbe%e3%81%a7vbscript%e3%82%b3%e3%83%bc%e3%83%89%e3%82%92%e6%9b%b8%e3%81%8f%e3%81%ae%e3%82%92%e5%8a%a9%e3%81%91%e3%82%8bvbscript","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=2260","title":{"rendered":"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript"},"content":{"rendered":"<p>VBScript\u306e\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3068\u304d\u3001\u30e1\u30e2\u5e33\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u306f\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9(Intellisense)\u6a5f\u80fd\u304c\u4f7f\u3048\u305a\u4e0d\u81ea\u7531\u306a\u601d\u3044\u3092\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002<br \/>\n\u305d\u3053\u3067\u3001\u79c1\u306f\u3088\u304fOffice\u4ed8\u5c5e\u306eVBE(Visual Basic Editor)\u3067\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3067\u3059\u304c\u3001\u4eca\u56de\u306f\u305d\u306eVBE\u3092\u4f7f\u3063\u3066VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002<\/p>\n<p><strong>\u30fbExcel\u3092\u5229\u7528\u3059\u308b\u5834\u5408(\u203b \u52d5\u4f5c\u78ba\u8a8d\u306f2010\u3067\u884c\u3044\u307e\u3057\u305f\u3002)<\/strong><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nDim SysDir\r\nConst xlMinimized = -4140\r\n\r\nWith CreateObject(&quot;Excel.Application&quot;)\r\n  .Visible = True\r\n  .WindowState = xlMinimized '\u30a6\u30a3\u30f3\u30c9\u30a6\u6700\u5c0f\u5316\r\n  .Workbooks.Add()\r\n  .CommandBars.FindControl(, 1695).Execute 'VBE\u8868\u793a\r\n  On Error Resume Next\r\n  .VBE.CommandBars.FindControl(, 2558).Execute '\u30b3\u30fc\u30c9\u306e\u8868\u793a\r\n  Select Case Err.Number\r\n    Case 0\r\n      SysDir = CreateObject(&quot;Shell.Application&quot;).Namespace(37).Self.Path &amp; .PathSeparator\r\n      '\u53c2\u7167\u8a2d\u5b9a\r\n      With .VBE.ActiveVBProject.References\r\n        .AddFromFile SysDir &amp; &quot;scrrun.dll&quot; 'Microsoft Scripting Runtime\r\n        .AddFromFile SysDir &amp; &quot;shell32.dll&quot; 'Microsoft Shell Controls And Automation\r\n        .AddFromFile SysDir &amp; &quot;ieframe.dll&quot; 'Microsoft Internet Controls\r\n        .AddFromFile SysDir &amp; &quot;mshtml.tlb&quot; 'Microsoft HTML Object Library\r\n      End With\r\n      '\u30b3\u30fc\u30c9\u521d\u671f\u5165\u529b\r\n      With .VBE.SelectedVBComponent.CodeModule\r\n        .DeleteLines 1, .CountOfLines '\u5168\u30b3\u30fc\u30c9\u524a\u9664\r\n        .InsertLines 1, &quot;Option Explicit&quot;\r\n        .InsertLines 2, &quot;&quot;\r\n        .InsertLines 3, &quot;'\u25a0 \u30b3\u30d4\u30fc\uff06\u30da\u30fc\u30b9\u30c8\u7528&quot;\r\n        .InsertLines 4, &quot;'CreateObject(&quot;&quot;Shell.Application&quot;&quot;)&quot;\r\n        .InsertLines 5, &quot;'CreateObject(&quot;&quot;Scripting.FileSystemObject&quot;&quot;)&quot;\r\n        .InsertLines 6, &quot;'CreateObject(&quot;&quot;InternetExplorer.Application&quot;&quot;)&quot;\r\n        .InsertLines 7, &quot;'CreateObject(&quot;&quot;htmlfile&quot;&quot;)&quot;\r\n        .InsertLines 8, &quot;'Wscript.Quit&quot;\r\n        .InsertLines 9, &quot;&quot;\r\n      End With\r\n    Case 1004\r\n      MsgBox &quot;\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30bb\u30f3\u30bf\u30fc\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u300cVBA \u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30aa\u30d6\u30b8\u30a7\u30af\u30c8 \u30e2\u30c7\u30eb\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3092\u4fe1\u983c\u3059\u308b\u300d\u306b\u30c1\u30a7\u30c3\u30af\u3092\u5165\u308c\u3066\u304f\u3060\u3055\u3044\u3002&quot;, 16\r\n      CloseWorkbooks .Workbooks\r\n      .Quit\r\n    Case Else\r\n      MsgBox &quot;\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u51e6\u7406\u3092\u4e2d\u6b62\u3057\u307e\u3059\u3002&quot;, 16\r\n      CloseWorkbooks .Workbooks\r\n      .Quit\r\n  End Select\r\n  On Error GoTo 0\r\nEnd With\r\n\r\nPrivate Sub CloseWorkbooks(ByVal wbs)\r\n  Dim wb\r\n  \r\n  For Each wb In wbs\r\n    wb.Close False\r\n  Next\r\nEnd Sub<\/pre>\n<p><strong>\u30fbWord\u3092\u5229\u7528\u3059\u308b\u5834\u5408(\u203b \u52d5\u4f5c\u78ba\u8a8d\u306f2010\u3067\u884c\u3044\u307e\u3057\u305f\u3002)<\/strong><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nDim SysDir\r\nConst wdDoNotSaveChanges = 0\r\nConst wdWindowStateMinimize = 2\r\n\r\nWith CreateObject(&quot;Word.Application&quot;)\r\n  .Visible = True\r\n  .WindowState = wdWindowStateMinimize '\u30a6\u30a3\u30f3\u30c9\u30a6\u6700\u5c0f\u5316\r\n  .Documents.Add()\r\n  .CommandBars.FindControl(, 1695).Execute 'VBE\u8868\u793a\r\n  On Error Resume Next\r\n  .VBE.CommandBars.FindControl(, 2558).Execute '\u30b3\u30fc\u30c9\u306e\u8868\u793a\r\n  Select Case Err.Number\r\n    Case 0\r\n      SysDir = CreateObject(&quot;Shell.Application&quot;).Namespace(37).Self.Path &amp; .PathSeparator\r\n      '\u53c2\u7167\u8a2d\u5b9a\r\n      With .VBE.ActiveVBProject.References\r\n        .AddFromFile SysDir &amp; &quot;scrrun.dll&quot; 'Microsoft Scripting Runtime\r\n        .AddFromFile SysDir &amp; &quot;shell32.dll&quot; 'Microsoft Shell Controls And Automation\r\n        .AddFromFile SysDir &amp; &quot;ieframe.dll&quot; 'Microsoft Internet Controls\r\n        .AddFromFile SysDir &amp; &quot;mshtml.tlb&quot; 'Microsoft HTML Object Library\r\n      End With\r\n      '\u30b3\u30fc\u30c9\u521d\u671f\u5165\u529b\r\n      With .VBE.SelectedVBComponent.CodeModule\r\n        .DeleteLines 1, .CountOfLines '\u5168\u30b3\u30fc\u30c9\u524a\u9664\r\n        .InsertLines 1, &quot;Option Explicit&quot;\r\n        .InsertLines 2, &quot;&quot;\r\n        .InsertLines 3, &quot;'\u25a0 \u30b3\u30d4\u30fc\uff06\u30da\u30fc\u30b9\u30c8\u7528&quot;\r\n        .InsertLines 4, &quot;'CreateObject(&quot;&quot;Shell.Application&quot;&quot;)&quot;\r\n        .InsertLines 5, &quot;'CreateObject(&quot;&quot;Scripting.FileSystemObject&quot;&quot;)&quot;\r\n        .InsertLines 6, &quot;'CreateObject(&quot;&quot;InternetExplorer.Application&quot;&quot;)&quot;\r\n        .InsertLines 7, &quot;'CreateObject(&quot;&quot;htmlfile&quot;&quot;)&quot;\r\n        .InsertLines 8, &quot;'Wscript.Quit&quot;\r\n        .InsertLines 9, &quot;&quot;\r\n      End With\r\n    Case 6068\r\n      MsgBox &quot;\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30bb\u30f3\u30bf\u30fc\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u300cVBA \u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30aa\u30d6\u30b8\u30a7\u30af\u30c8 \u30e2\u30c7\u30eb\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3092\u4fe1\u983c\u3059\u308b\u300d\u306b\u30c1\u30a7\u30c3\u30af\u3092\u5165\u308c\u3066\u304f\u3060\u3055\u3044\u3002&quot;, 16\r\n      .Quit wdDoNotSaveChanges\r\n    Case Else\r\n      MsgBox &quot;\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u51e6\u7406\u3092\u4e2d\u6b62\u3057\u307e\u3059\u3002&quot;, 16\r\n      .Quit wdDoNotSaveChanges\r\n  End Select\r\n  On Error GoTo 0\r\nEnd With<\/pre>\n<p>Excel\u3092\u5229\u7528\u3059\u308b\u5834\u5408\u3068Word\u3092\u5229\u7528\u3059\u308b\u5834\u5408\u306e2\u4f8b\u3092\u6319\u3052\u307e\u3057\u305f\u304c\u3001\u3084\u3063\u3066\u3044\u308b\u3053\u3068\u306f\u540c\u3058\u3067\u3001\u4e0a\u8a18\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3059\u308b\u3068\u3001Office\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304c\u8d77\u52d5\u3059\u308b\u3068\u540c\u6642\u306bVBE\u304c\u4e0b\u56f3\u306e\u72b6\u614b\u3067\u7acb\u3061\u4e0a\u304c\u308a\u307e\u3059\u3002<\/p>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_01.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_01-280x300.jpg\" alt=\"\" title=\"VBE_01\" width=\"280\" height=\"300\" class=\"alignnone size-medium wp-image-2261\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_01-280x300.jpg 280w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_01-290x310.jpg 290w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_01-140x150.jpg 140w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_01.jpg 682w\" sizes=\"auto, (max-width: 280px) 100vw, 280px\" \/><\/a><\/p>\n<p>\u3057\u304b\u3082\u300c<span style=\"color: #ff0000; font-weight: bold;\">Microsoft Scripting Runtime<\/span>\u300d\u300c<span style=\"color: #ff0000; font-weight: bold;\">Microsoft Shell Controls And Automation<\/span>\u300d\u300c<span style=\"color: #ff0000; font-weight: bold;\">Microsoft Internet Controls<\/span>\u300d\u300c<span style=\"color: #ff0000; font-weight: bold;\">Microsoft HTML Object Library<\/span>\u300d\u306e4\u3064\u3092\u53c2\u7167\u8a2d\u5b9a\u3057\u305f\u72b6\u614b\u306a\u306e\u3067\u3001\u4e0b\u56f3\u306e\u3088\u3046\u306bInternetExplorer\u3092\u64cd\u4f5c\u3059\u308b\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u5834\u5408\u3067\u3082\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9\u6a5f\u80fd\u306b\u3088\u3063\u3066\u7c21\u5358\u306b\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_02.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_02-280x300.jpg\" alt=\"\" title=\"VBE_02\" width=\"280\" height=\"300\" class=\"alignnone size-medium wp-image-2262\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_02-280x300.jpg 280w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_02-290x310.jpg 290w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_02-140x150.jpg 140w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_02.jpg 682w\" sizes=\"auto, (max-width: 280px) 100vw, 280px\" \/><\/a><\/p>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_03.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_03-280x300.jpg\" alt=\"\" title=\"VBE_03\" width=\"280\" height=\"300\" class=\"alignnone size-medium wp-image-2263\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_03-280x300.jpg 280w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_03-290x310.jpg 290w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_03-140x150.jpg 140w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_03.jpg 682w\" sizes=\"auto, (max-width: 280px) 100vw, 280px\" \/><\/a><\/p>\n<p>VBE\u4e0a\u304b\u3089\u52d5\u4f5c\u78ba\u8a8d\u3082\u3067\u304d\u307e\u3059\u304c\u3001\u30b3\u30fc\u30c9\u3092\u305d\u306e\u307e\u307e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u3082\u52d5\u4f5c\u3057\u306a\u3044\u306e\u3067\u3001\u5fc5\u8981\u306a\u90e8\u5206\u3092\u66f8\u304d\u63db\u3048\u307e\u3059(&#8220;<strong>\u30b3\u30d4\u30fc\uff06\u30da\u30fc\u30b9\u30c8\u7528<\/strong>&#8220;\u3068\u3057\u3066\u30b3\u30e1\u30f3\u30c8\u5316\u3057\u3066\u3044\u308b\u6587\u5b57\u5217\u306f\u3053\u306e\u3068\u304d\u4f7f\u3044\u307e\u3059)\u3002<\/p>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_04.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_04-300x164.jpg\" alt=\"\" title=\"VBE_04\" width=\"300\" height=\"164\" class=\"alignnone size-medium wp-image-2264\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_04-300x164.jpg 300w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_04-290x159.jpg 290w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_04-150x82.jpg 150w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_04.jpg 502w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>\u7c21\u5358\u306a\u30d7\u30ed\u30d1\u30c6\u30a3\u3084\u30e1\u30bd\u30c3\u30c9\u3092\u5165\u529b\u3059\u308b\u3060\u3051\u3067\u3042\u308c\u3070\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9\u6a5f\u80fd\u304c\u306a\u304f\u3066\u3082\u7279\u306b\u554f\u984c\u306f\u7121\u3044\u306e\u3067\u3059\u304c\u3001&#8221;<strong>getElementsByTagName<\/strong>&#8220;\u3084&#8221;<strong>GetAbsolutePathName<\/strong>&#8220;\u306a\u3093\u304b\u3092\u5165\u529b\u3059\u308b\u3068\u306a\u308b\u3068\u3001\u305d\u308c\u3060\u3051\u3067\u7d50\u69cb\u306a\u30b9\u30c8\u30ec\u30b9\u3067\u3059\u3002\u5165\u529b\u30df\u30b9\u3092\u9632\u3050\u610f\u5473\u5408\u3044\u3067\u3082VBE\u306e\u5229\u7528\u306f\u975e\u5e38\u306b\u52b9\u679c\u7684\u3067\u3059\u306d\u3002<\/p>\n<p>\u3055\u3089\u306b\u3001\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30d6\u30e9\u30a6\u30b6\u30fc\u304b\u3089\u306f\u5b9a\u6570\u3084\u30d7\u30ed\u30d1\u30c6\u30a3\u3001\u30e1\u30bd\u30c3\u30c9\u7b49\u3092\u8abf\u3079\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u3067\u3001\u6307\u5b9a\u3059\u3079\u304d\u5f15\u6570\u3092\u5fd8\u308c\u3066\u3057\u307e\u3063\u305f\u5834\u5408\u7b49\u306b\u306f\u7c21\u5358\u306b\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>\u975e\u5e38\u306b\u8eab\u8fd1\u3067\u7c21\u5358\u306b\u5229\u7528\u3067\u304d\u308bVBE\u3001\u7686\u3055\u3093\u3082\u662f\u975e\u3054\u6d3b\u7528\u304f\u3060\u3055\u3044\u3002<\/p>\n<p>\u3061\u306a\u307f\u306b\u3001Office\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u304b\u3089\u300c<span style=\"color: #ff0000; font-weight: bold;\">VBA \u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30aa\u30d6\u30b8\u30a7\u30af\u30c8 \u30e2\u30c7\u30eb\u3078\u306e\u30a2\u30af\u30bb\u30b9\u3092\u4fe1\u983c\u3059\u308b<\/span>\u300d\u306b\u30c1\u30a7\u30c3\u30af\u3092\u5165\u308c\u3066\u3044\u306a\u3044\u3068\u4e0a\u8a18\u30b9\u30af\u30ea\u30d7\u30c8\u306f\u5229\u7528\u3067\u304d\u307e\u305b\u3093\u306e\u3067\u3001\u305d\u306e\u70b9\u3060\u3051\u306f\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\u3002<\/p>\n<p><a href=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_05.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_05-300x216.jpg\" alt=\"\" title=\"VBE_05\" width=\"300\" height=\"216\" class=\"alignnone size-medium wp-image-2265\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_05-300x216.jpg 300w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_05-290x209.jpg 290w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_05-150x108.jpg 150w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/VBE_05.jpg 950w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"VBScript\u306e\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3068\u304d\u3001\u30e1\u30e2\u5e33\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u306f\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9(Intellisense)\u6a5f\u80fd\u304c\u4f7f\u3048\u305a\u4e0d\u81ea\u7531\u306a\u601d\u3044\u3092\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002 \u305d\u3053\u3067\u3001\u79c1\u306f\u3088\u304fOffice\u4ed8\u5c5e\u306eVBE(Visual Basi [&hellip;]","protected":false},"author":1,"featured_media":7132,"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":[6],"tags":[139,87],"class_list":["post-2260","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-vbs","tag-vbs","tag-87"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"VBScript\u306e\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3068\u304d\u3001\u30e1\u30e2\u5e33\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u306f\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9(Intellisense)\u6a5f\" \/>\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=\"vbscript,\u958b\u767a\u74b0\u5883\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=2260\" \/>\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=\"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"VBScript\u306e\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3068\u304d\u3001\u30e1\u30e2\u5e33\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u306f\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9(Intellisense)\u6a5f\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=2260\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-09-12T08:41:58+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2013-08-19T05:15:04+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"VBScript\u306e\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3068\u304d\u3001\u30e1\u30e2\u5e33\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u306f\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9(Intellisense)\u6a5f\" \/>\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=2260#article\",\"name\":\"Office\\u4ed8\\u5c5e\\u306eVBE\\u3067VBScript\\u30b3\\u30fc\\u30c9\\u3092\\u66f8\\u304f\\u306e\\u3092\\u52a9\\u3051\\u308bVBScript | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"Office\\u4ed8\\u5c5e\\u306eVBE\\u3067VBScript\\u30b3\\u30fc\\u30c9\\u3092\\u66f8\\u304f\\u306e\\u3092\\u52a9\\u3051\\u308bVBScript\",\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-VBScript.png\",\"width\":790,\"height\":480},\"datePublished\":\"2012-09-12T17:41:58+09:00\",\"dateModified\":\"2013-08-19T14:15:04+09:00\",\"inLanguage\":\"ja\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2260#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2260#webpage\"},\"articleSection\":\"VBScript, VBScript, \\u958b\\u767a\\u74b0\\u5883\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2260#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=6#listItem\",\"name\":\"VBScript\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=6#listItem\",\"position\":2,\"name\":\"VBScript\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=6\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2260#listItem\",\"name\":\"Office\\u4ed8\\u5c5e\\u306eVBE\\u3067VBScript\\u30b3\\u30fc\\u30c9\\u3092\\u66f8\\u304f\\u306e\\u3092\\u52a9\\u3051\\u308bVBScript\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2260#listItem\",\"position\":3,\"name\":\"Office\\u4ed8\\u5c5e\\u306eVBE\\u3067VBScript\\u30b3\\u30fc\\u30c9\\u3092\\u66f8\\u304f\\u306e\\u3092\\u52a9\\u3051\\u308bVBScript\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=6#listItem\",\"name\":\"VBScript\"}}]},{\"@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=2260#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=2260#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2260\",\"name\":\"Office\\u4ed8\\u5c5e\\u306eVBE\\u3067VBScript\\u30b3\\u30fc\\u30c9\\u3092\\u66f8\\u304f\\u306e\\u3092\\u52a9\\u3051\\u308bVBScript | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"VBScript\\u306e\\u30b3\\u30fc\\u30c9\\u3092\\u66f8\\u304f\\u3068\\u304d\\u3001\\u30e1\\u30e2\\u5e33\\u7b49\\u306e\\u30c6\\u30ad\\u30b9\\u30c8\\u30a8\\u30c7\\u30a3\\u30bf\\u3067\\u306f\\u30a4\\u30f3\\u30c6\\u30ea\\u30bb\\u30f3\\u30b9(Intellisense)\\u6a5f\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2260#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-VBScript.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2260\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2260#mainImage\"},\"datePublished\":\"2012-09-12T17:41:58+09:00\",\"dateModified\":\"2013-08-19T14:15:04+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":"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"VBScript\u306e\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3068\u304d\u3001\u30e1\u30e2\u5e33\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u306f\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9(Intellisense)\u6a5f","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=2260","robots":"max-image-preview:large","keywords":"vbscript,\u958b\u767a\u74b0\u5883","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=2260#article","name":"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript","author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-VBScript.png","width":790,"height":480},"datePublished":"2012-09-12T17:41:58+09:00","dateModified":"2013-08-19T14:15:04+09:00","inLanguage":"ja","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2260#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2260#webpage"},"articleSection":"VBScript, VBScript, \u958b\u767a\u74b0\u5883"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=2260#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=6#listItem","name":"VBScript"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=6#listItem","position":2,"name":"VBScript","item":"https:\/\/www.ka-net.org\/blog\/?cat=6","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=2260#listItem","name":"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=2260#listItem","position":3,"name":"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=6#listItem","name":"VBScript"}}]},{"@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=2260#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=2260#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=2260","name":"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"VBScript\u306e\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3068\u304d\u3001\u30e1\u30e2\u5e33\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u306f\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9(Intellisense)\u6a5f","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2260#breadcrumblist"},"author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"creator":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-VBScript.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=2260\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2260#mainImage"},"datePublished":"2012-09-12T17:41:58+09:00","dateModified":"2013-08-19T14:15:04+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":"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"VBScript\u306e\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3068\u304d\u3001\u30e1\u30e2\u5e33\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u306f\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9(Intellisense)\u6a5f","og:url":"https:\/\/www.ka-net.org\/blog\/?p=2260","article:published_time":"2012-09-12T08:41:58+00:00","article:modified_time":"2013-08-19T05:15:04+00:00","twitter:card":"summary","twitter:title":"Office\u4ed8\u5c5e\u306eVBE\u3067VBScript\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u306e\u3092\u52a9\u3051\u308bVBScript | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"VBScript\u306e\u30b3\u30fc\u30c9\u3092\u66f8\u304f\u3068\u304d\u3001\u30e1\u30e2\u5e33\u7b49\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u306f\u30a4\u30f3\u30c6\u30ea\u30bb\u30f3\u30b9(Intellisense)\u6a5f"},"aioseo_meta_data":{"post_id":"2260","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":[],"defaultGraph":"","defaultPostTypeGraph":""},"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:03:58","updated":"2022-09-14 04:51:52","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-VBScript.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-As","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2260","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=2260"}],"version-history":[{"count":5,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2260\/revisions"}],"predecessor-version":[{"id":2270,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2260\/revisions\/2270"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7132"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2260"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2260"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2260"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}