<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>全国個人事業主支援協会 | 照屋 博司 | Activity</title>
	<link>https://kojinjigyou.org/member-index/teruya_h4001/activity/</link>
	<atom:link href="https://kojinjigyou.org/member-index/teruya_h4001/activity/feed/" rel="self" type="application/rss+xml" />
	<description>照屋 博司 についてのアクティビティフィード。</description>
	<lastBuildDate>Mon, 13 Apr 2026 07:24:52 +0900</lastBuildDate>
	<generator>https://buddypress.org/?v=6.3.0</generator>
	<language>ja</language>
	<ttl>30</ttl>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>2</sy:updateFrequency>
	
						<item>
				<guid isPermaLink="false">20db4209f2fc49e0a79a9ca07c3751b4</guid>
				<title>照屋 博司 wrote a new post, ExcelVBAを便利に利用する例題</title>
				<link>https://kojinjigyou.org/?p=103620</link>
				<pubDate>Thu, 27 Nov 2025 11:57:52 +0900</pubDate>

									<content:encoded><![CDATA[<p>ExcelVBAを便利に利用する例題</p>
<p>&#8216;■ワークシート名を順にイミディエイトに表示します。<br />
Sub sample01()<br />
Dim i As Integer<br />
    For i = 1 To Worksheets.Count<br />
        Debug.Print &#8220;シート名：&#8221; &amp; Worksheets(i).Name<br />
    Next i<br />
End Sub</p>
<p>&#8216;■全シートをA1セルを選択させ[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">7777e904e1179663b211d1be5c13d6e8</guid>
				<title>照屋 博司 wrote a new post, バッチで使用できる比較演算子</title>
				<link>https://kojinjigyou.org/?p=100319</link>
				<pubDate>Fri, 17 Oct 2025 13:07:43 +0900</pubDate>

									<content:encoded><![CDATA[<p>バッチで使用できる比較演算子と判定内容例。</p>
<p>[数値比較]<br />
数値の大小比較には、IFコマンド内で数値比較演算子を使用します。﻿<br />
EQU: 等しい (Equal to)<br />
NEQ: 等しくない (Not Equal to)<br />
LSS: より小さい (Less than)<br />
LEQ: 以下 (Less than or Equal to)<br />
GTR: より大きい (Greater than)<br />
GEQ: 以上 (Gr[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">b9188b4c8a707cf2756900371bf8b197</guid>
				<title>照屋 博司 wrote a new post, コマンドラインで現在のディレクトリを変更するコマンド</title>
				<link>https://kojinjigyou.org/?p=97440</link>
				<pubDate>Tue, 16 Sep 2025 01:23:12 +0900</pubDate>

									<content:encoded><![CDATA[<p>コマンドラインで、現在のディレクトリを変更する「CHDIR」や<br />
「CD」コマンドよりも、より強力な「PUSHD」コマンドがあります。</p>
<p>ヘルプより<br />
PUSHD [パス | ..]</p>
<p>パス：<br />
現在のディレクトリとして設定するディレクトリを指定します。<br />
コマンド拡張機能を有効にすると、PUSHD コマンドは、通常のドライブ文字<br />
とパスだけでなくネットワーク パスも受け付けるようになります。<br />
ネットワ[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">e74f7526dda7a088481e99b29cbcea3c</guid>
				<title>照屋 博司 wrote a new post, For文を使用してファイルの更新日付を取得するバッチを作成する方法</title>
				<link>https://kojinjigyou.org/?p=94544</link>
				<pubDate>Tue, 05 Aug 2025 01:14:20 +0900</pubDate>

									<content:encoded><![CDATA[<p>For文を使用してファイルの更新日付を取得するバッチを作成する方法<br />
取得したいファイル名を&#8221;temp.txt&#8221;とします。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
for %%i in (&#8220;C:Users999temp.txt&#8221;) do echo %%~ti<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>上記バッチを実行すると<br />
更新日[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">88e04817de87c29e95532bb15e4c8d06</guid>
				<title>照屋 博司 wrote a new post, コマンドラインでテキストファイルから指定した文字列を検索する方法</title>
				<link>https://kojinjigyou.org/?p=92425</link>
				<pubDate>Tue, 15 Jul 2025 00:48:56 +0900</pubDate>

									<content:encoded><![CDATA[<p>■aaa.txtの中身にhogeという文字列があるかどうかを検索する方法。<br />
findstr &#8220;hoge&#8221; aaa.txt<br />
if ERRORLEVEL == 1 goto FAIL<br />
if ERRORLEVEL == 0 goto SUCCESS<br />
    :FAIL<br />
    echo &#8220;該当無し&#8221;<br />
    :SUCCESS<br />
    echo &#8220;該当有り&#8221;<br />
ここで勘違いしやすいのは<br />
    if ERRORLEV[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">70679753591808c8f26171a81ab7cd5f</guid>
				<title>照屋 博司 wrote a new post, バッチのIF文の構文</title>
				<link>https://kojinjigyou.org/?p=90050</link>
				<pubDate>Tue, 03 Jun 2025 00:54:17 +0900</pubDate>

									<content:encoded><![CDATA[<p>バッチのIF文の構文<br />
if 条件式 (<br />
 　 処理<br />
)<br />
// else ifとelseを書く場合<br />
if 条件式 (<br />
 　 処理<br />
) else if 条件式 (<br />
 　 処理<br />
) else (<br />
　　処理<br />
)</p>
<p>条件が合致する場合、配下の処理が実行され、if文の処理は終了します。<br />
条件が合致することをtru[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">ac29a75f29a4c831e8f1ba357b992b67</guid>
				<title>照屋 博司 wrote a new post, 前月末日を取得するバッチ</title>
				<link>https://kojinjigyou.org/?p=88564</link>
				<pubDate>Sun, 18 May 2025 11:00:09 +0900</pubDate>

									<content:encoded><![CDATA[<p>前月末日を取得するバッチ<br />
    rem 今月(本日)の取得<br />
    set dt=%date:~-10%<br />
    set yy=%dt:~0,4%<br />
    set mm=%dt:~5,2%<br />
    set dd=%dt:~8,2%<br />
    set KONGETSU=%yy%/%mm%<br />
    set TODAY=%yy%%mm%%dd%</p>
<p>    rem 先月の計算[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">5018e7d230ec16762ca804e26f3ee7a7</guid>
				<title>照屋 博司 wrote a new post, ディレクトリ配下の複数のファイルを１つのファイルに結合するコマンド</title>
				<link>https://kojinjigyou.org/?p=86339</link>
				<pubDate>Fri, 11 Apr 2025 14:44:26 +0900</pubDate>

									<content:encoded><![CDATA[<p>■ディレクトリ配下の複数のファイルを１つのファイルに結合するコマンド</p>
<p>1.*を利用して複数のファイルを結合する。</p>
<p>C:tmp&gt;copy /b C:tmpdata*.txt C:tmpall.txt<br />
C:tmpdataA.txt<br />
C:tmpdataB.txt<br />
C:tmpdataC.txt<br />
        1 個のファイルをコピーしました。</p>
<p>2[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">82d2c20d991240a757be3b8925ee8199</guid>
				<title>照屋 博司 wrote a new post, バッチファイル名の文字列を変数に代入する操作</title>
				<link>https://kojinjigyou.org/?p=84157</link>
				<pubDate>Mon, 03 Mar 2025 09:43:32 +0900</pubDate>

									<content:encoded><![CDATA[<p>バッチファイル名の文字列を変数に代入する操作。<br />
例)test.bat<br />
echo %~n0 ： test<br />
echo %~x0 ： .bat<br />
echo %~nx0： test.bat</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
「%」は特別な文字のため、「%」を[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">50a0820f1bfa78099f0a73a22d60bd95</guid>
				<title>照屋 博司 wrote a new post, バッチ基本編</title>
				<link>https://kojinjigyou.org/?p=82274</link>
				<pubDate>Tue, 04 Feb 2025 02:46:17 +0900</pubDate>

									<content:encoded><![CDATA[<p>■テキストから引数を取得する方法(但し下記の記載だとdata.txtの最初の1行目のみ取得される)<br />
SET /P DATA=nul<br />
ping localhost -w 5000 &gt; nul<br />
上記はローカルホストへPINGコマンドを実行し、その結果を捨てる（null）処理。<br />
-w オプションは、応答を待つタイムアウトの時間 (ミ[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">4d29edad4db295a04b782d2b37bebf71</guid>
				<title>照屋 博司 wrote a new post, バッチの変数の文字列操作について</title>
				<link>https://kojinjigyou.org/?p=79093</link>
				<pubDate>Fri, 13 Dec 2024 14:59:22 +0900</pubDate>

									<content:encoded><![CDATA[<p>バッチの変数の文字列操作について<br />
SET V=ABCDEFGHIJKL</p>
<p>%V% 変数Vの値全体 「%V%」 ⇒「ABCDEFGHIJKL」<br />
%V:~m% m文字目から、最後まで 「%V:~5%」 ⇒「FGHIJKL」<br />
%V:~m,n% m文字目から、n文字分 「%V:~5,2%」⇒「FG」<br />
%V:~,n% 先頭から、n文字分 「%V:~,5%」 ⇒「ABCDE」<br />
「%V:ABC=%」⇒「DEFG[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">24c7f64ccbee03a5f81269b63f04a2a9</guid>
				<title>照屋 博司 wrote a new post, バッチでネットワークドライブを割り当てる手順</title>
				<link>https://kojinjigyou.org/?p=78148</link>
				<pubDate>Wed, 27 Nov 2024 14:21:51 +0900</pubDate>

									<content:encoded><![CDATA[<p>バッチで「ネットワークドライブの割り当て」をする場合の記述方法</p>
<p>「Z：」ドライブに新しく割り当てると想定<br />
割り当てるドライブレター：Z</p>
<p>手順1：すでに割り当てらている「Z：」があれば先に「切断」する。…割り当てされてなければメッセージが出るだけ。<br />
NET USE /d Z:</p>
<p>手順2：「Z：」ドライブに割り当てる<br />
NET USE Z: ＊＊＊</p>
<p>■例)サーバーやファイルサーバー上の特定[&hellip;]</p>
]]></content:encoded>
				
				
							</item>
					<item>
				<guid isPermaLink="false">f94b55421743a326b03301129084a469</guid>
				<title>照屋 博司 さんのプロフィールが更新されました。</title>
				<link>https://kojinjigyou.org/member-activity/p/29053/</link>
				<pubDate>Fri, 22 Nov 2024 03:24:43 +0900</pubDate>

				
									<slash:comments>0</slash:comments>
				
							</item>
		
	</channel>
</rss>