<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[עזרה בכתיבת סקריפט]]></title><description><![CDATA[<p dir="auto">אני צריך עזרה בכתיבת סקריפט שיפעיל יישום ואם הוא ייסגר הוא יפעיל אותו חזרה לאחר כמה זמן שאגדיר לו</p>
]]></description><link>https://tchumim.com/topic/5807/עזרה-בכתיבת-סקריפט</link><generator>RSS for Node</generator><lastBuildDate>Thu, 14 May 2026 19:45:21 GMT</lastBuildDate><atom:link href="https://tchumim.com/topic/5807.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 26 Jun 2019 17:53:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Wed, 03 Jul 2019 15:02:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> תודה רבה</p>
]]></description><link>https://tchumim.com/post/66210</link><guid isPermaLink="true">https://tchumim.com/post/66210</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Wed, 03 Jul 2019 15:02:57 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Tue, 02 Jul 2019 17:12:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aknvtchtk">@<bdi>aknvtchtk</bdi></a><br />
בבקשה הנה הקובץ<br />
<a href="/assets/uploads/files/1562086495323-openexeloop.exe">openExeLoop.exe</a><br />
אתה צריך שבתיקייה יהיה קובץ בשם file.txt<br />
ושבתוכו יהיה הנתיב לקובץ שאתה רוצה להפעיל<br />
דוגמא לקובץ (שים לב שבהורדת הקובץ השם שלו משתנה אז תשנה אותו בחזרה לfile.txt)<br />
<a href="/assets/uploads/files/1562087529140-file.txt">file.txt</a></p>
<p dir="auto">והנה הקוד למי שמתעניין <img src="https://tchumim.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f62e.png?v=9d71ebe86e6" class="not-responsive emoji emoji-android emoji--open_mouth" style="height:23px;width:auto;vertical-align:middle" title=":O" alt="😮" /></p>
<pre><code>using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Net.Mime;
using System.Text;

namespace openExeLoop
{
    class Program
    {
        static void Main(string[] args)
        {
            string filename = "";
            try
            {
            filename= System.IO.File.ReadAllText("file.txt");
            Console.WriteLine("start file: " + filename);
            }
            catch (Exception e)
            {
                Console.WriteLine(e);
                Console.ReadLine();
                Environment.Exit(0);
                //  throw;
            }
            Process process = new Process();
            // Configure the process using the StartInfo properties.
            process.StartInfo.FileName = @filename;
            process.StartInfo.Arguments = "";
            process.StartInfo.WindowStyle = ProcessWindowStyle.Minimized;

            while (true)
            {
                try
                {
                    Console.WriteLine("start on " + DateTime.Now );

                    process.Start();

                }
                catch (Exception e)
                {
                    Console.WriteLine(e);

                    //throw;
                }
                process.WaitForExit();// Waits here for the process to exit.
                Console.WriteLine("end on " + DateTime.Now + ", start while 15 sec.");
                System.Threading.Thread.Sleep(15 * 1000);
            }


        }

    }
}

</code></pre>
]]></description><link>https://tchumim.com/post/66162</link><guid isPermaLink="true">https://tchumim.com/post/66162</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Tue, 02 Jul 2019 17:12:44 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Tue, 02 Jul 2019 16:25:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> סליחה שלא הבנתי אותך אבל מה אני יצטרך להעביר?</p>
]]></description><link>https://tchumim.com/post/66159</link><guid isPermaLink="true">https://tchumim.com/post/66159</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Tue, 02 Jul 2019 16:25:27 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Tue, 02 Jul 2019 16:23:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aknvtchtk">@<bdi>aknvtchtk</bdi></a><br />
שתצטרך להעביר לEXE שאצורלך איזה קובץ להפעיל</p>
]]></description><link>https://tchumim.com/post/66158</link><guid isPermaLink="true">https://tchumim.com/post/66158</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Tue, 02 Jul 2019 16:23:39 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Tue, 02 Jul 2019 15:54:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a>  מה הכוונה מפרמטר?<br />
תודה רבה</p>
]]></description><link>https://tchumim.com/post/66156</link><guid isPermaLink="true">https://tchumim.com/post/66156</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Tue, 02 Jul 2019 15:54:11 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Tue, 02 Jul 2019 15:51:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aknvtchtk">@<bdi>aknvtchtk</bdi></a><br />
אם הוא יקח את הקובץ מפרמטר זה יהיה טוב?</p>
]]></description><link>https://tchumim.com/post/66155</link><guid isPermaLink="true">https://tchumim.com/post/66155</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Tue, 02 Jul 2019 15:51:32 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Tue, 02 Jul 2019 15:40:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> יש סיכוי בבקשה ליישום?<br />
רק שישאב את היישום ממסמך טקסט או מקובץ .ini</p>
]]></description><link>https://tchumim.com/post/66154</link><guid isPermaLink="true">https://tchumim.com/post/66154</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Tue, 02 Jul 2019 15:40:19 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Sun, 30 Jun 2019 17:06:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> תודה על הכל אבל רק סתם שתדע שיש את אותו כלי בממשק gui כאן<br />
<a href="https://gallery.technet.microsoft.com/scriptcenter/PS2EXE-GUI-Convert-e7cb69d5" target="_blank" rel="noopener noreferrer nofollow ugc">https://gallery.technet.microsoft.com/scriptcenter/PS2EXE-GUI-Convert-e7cb69d5</a><br />
זה יותר נח</p>
]]></description><link>https://tchumim.com/post/65957</link><guid isPermaLink="true">https://tchumim.com/post/65957</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Sun, 30 Jun 2019 17:06:58 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Sun, 30 Jun 2019 17:04:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> יש סיכוי שתעשה לי את אותו יישום רק שיקח את הנתונים מאיפה להפעיל מקובץ טקסט או ini<br />
תודה רבה</p>
]]></description><link>https://tchumim.com/post/65955</link><guid isPermaLink="true">https://tchumim.com/post/65955</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Sun, 30 Jun 2019 17:04:59 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Sun, 30 Jun 2019 17:04:10 GMT]]></title><description><![CDATA[<p dir="auto">תודה רבה לכולם אני הסתדרתי זה עבד לי מצויין גם עם הPowerShell וגם עם הcmd</p>
]]></description><link>https://tchumim.com/post/65954</link><guid isPermaLink="true">https://tchumim.com/post/65954</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Sun, 30 Jun 2019 17:04:10 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 18:23:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> צודק <img src="https://tchumim.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=9d71ebe86e6" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /><br />
סורי <img src="https://tchumim.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f61e.png?v=9d71ebe86e6" class="not-responsive emoji emoji-android emoji--disappointed" style="height:23px;width:auto;vertical-align:middle" title=":(" alt="😞" /><br />
<img src="https://tchumim.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f61b.png?v=9d71ebe86e6" class="not-responsive emoji emoji-android emoji--stuck_out_tongue" style="height:23px;width:auto;vertical-align:middle" title=":P" alt="😛" /></p>
]]></description><link>https://tchumim.com/post/65849</link><guid isPermaLink="true">https://tchumim.com/post/65849</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Thu, 27 Jun 2019 18:23:40 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 18:34:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> אמר ב<a href="/post/65846">עזרה בכתיבת סקריפט</a>:</p>
<blockquote>
<p dir="auto">מה היה חסר שם?</p>
</blockquote>
<p dir="auto">כל ה-boilerplate</p>
<pre><code>using...
using...
namespace ... { //לא יודע אם חייבים את זה
    public class ... {
        public static void main() {

        }
    }
}
</code></pre>
<p dir="auto">הבאת רק את הפנים של הפונקציה</p>
]]></description><link>https://tchumim.com/post/65848</link><guid isPermaLink="true">https://tchumim.com/post/65848</guid><dc:creator><![CDATA[yossiz]]></dc:creator><pubDate>Thu, 27 Jun 2019 18:34:15 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 18:04:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> אמר ב<a href="/post/65802">עזרה בכתיבת סקריפט</a>:</p>
<blockquote>
<p dir="auto">ב. הקוד ש-<a class="plugin-mentions-user plugin-mentions-a" href="/user/clickone">@<bdi>clickone</bdi></a> הביא לא שלם צריך להוסיף כמה שורות בהתחלה</p>
</blockquote>
<p dir="auto">מה היה חסר שם? (האמת שזה קוד שכתבתי בשליפה)</p>
<p dir="auto">שאפו ענק על התשובות שהרצת כאן <img src="https://tchumim.com/assets/plugins/nodebb-plugin-emoji/emoji/customizations/1e2050fd-ca54-4838-b226-04501bdebefa-smile.png?v=9d71ebe86e6" class="not-responsive emoji emoji-customizations emoji--smile" style="height:23px;width:auto;vertical-align:middle" title=":D" alt="undefined" /><br />
מדהים!</p>
]]></description><link>https://tchumim.com/post/65846</link><guid isPermaLink="true">https://tchumim.com/post/65846</guid><dc:creator><![CDATA[clickone]]></dc:creator><pubDate>Thu, 27 Jun 2019 18:04:22 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:25:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> איזה פירוט תודה רבה</p>
]]></description><link>https://tchumim.com/post/65814</link><guid isPermaLink="true">https://tchumim.com/post/65814</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:25:21 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:24:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aknvtchtk">@<bdi>aknvtchtk</bdi></a> אמר ב<a href="/post/65810">עזרה בכתיבת סקריפט</a>:</p>
<blockquote>
<p dir="auto">ומה עם ההסתרה של החלון</p>
</blockquote>
<p dir="auto">בתוכנה PS2EXE, אם תשתמש בפרמטר <code>noconsole</code> זה יעשה EXE שלא יפתח חלון של powershell.<br />
וביתר פירוט,</p>
<ul>
<li>תוריד מ<a href="https://gallery.technet.microsoft.com/PS2EXE-Convert-PowerShell-9e4e07f1" target="_blank" rel="noopener noreferrer nofollow ugc">פה</a> את התוכנה PS2EXE</li>
<li>חלץ את הקבצים</li>
<li>תשמור את הסקריפט בשם כלשהו, לדוגמה script.ps1 בתוך אותו תקייה</li>
<li>תריץ בחלון CMD (תעשה <code>cd</code> לתיקייה שבה חילצת את הקבצים)</li>
</ul>
<pre><code>callPS2EXE.bat "script.ps1" "script.exe" -noconsole
</code></pre>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aknvtchtk">@<bdi>aknvtchtk</bdi></a> אמר ב<a href="/post/65812">עזרה בכתיבת סקריפט</a>:</p>
<blockquote>
<p dir="auto">לא אז זה בכלל לא עובד אם מורידים את ה Minimized</p>
</blockquote>
<p dir="auto">צריך להוריד גם את המילה <code>-windowstyle</code></p>
]]></description><link>https://tchumim.com/post/65813</link><guid isPermaLink="true">https://tchumim.com/post/65813</guid><dc:creator><![CDATA[yossiz]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:24:10 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:22:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> לא אז זה בכלל לא עובד אם מורידים את ה Minimized<br />
מה צריך להיות כתוב כדי שזה יעלה את החלון רגיל ורק הPowerShell יהיה מוסתר</p>
]]></description><link>https://tchumim.com/post/65812</link><guid isPermaLink="true">https://tchumim.com/post/65812</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:22:06 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:19:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> ואם אני לא רוצה אותו ממוזער אז להוריד בכלל נכון</p>
]]></description><link>https://tchumim.com/post/65811</link><guid isPermaLink="true">https://tchumim.com/post/65811</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:19:54 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:17:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> תודה רבה מאוד ומה עם ההסתרה של החלון</p>
]]></description><link>https://tchumim.com/post/65810</link><guid isPermaLink="true">https://tchumim.com/post/65810</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:17:36 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:16:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aknvtchtk">@<bdi>aknvtchtk</bdi></a> אמר ב<a href="/post/65807">עזרה בכתיבת סקריפט</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> זה הקנייטש שחשבתי שבזה זה כן אמור להיפתח אני רוצה שהחלון ייפתח רק שהתהליך של הפתיחה כלומר חלון הפקודה לא יהיה גלוי אבל התוכנה עצמה כן צריכה לעלות</p>
</blockquote>
<p dir="auto">בסדר גמור, אז במקום  <code>hidden</code> תכתוב <code>Minimized</code></p>
]]></description><link>https://tchumim.com/post/65809</link><guid isPermaLink="true">https://tchumim.com/post/65809</guid><dc:creator><![CDATA[yossiz]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:16:18 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:15:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> אם אני יהפוך את הפקודה לexe החלון של הPowerShell לא יראה?</p>
]]></description><link>https://tchumim.com/post/65808</link><guid isPermaLink="true">https://tchumim.com/post/65808</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:15:48 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:15:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> זה הקנייטש שחשבתי שבזה זה כן אמור להיפתח אני רוצה שהחלון ייפתח רק שהתהליך של הפתיחה כלומר חלון הפקודה לא יהיה גלוי אבל התוכנה עצמה כן צריכה לעלות</p>
]]></description><link>https://tchumim.com/post/65807</link><guid isPermaLink="true">https://tchumim.com/post/65807</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:15:01 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:14:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aknvtchtk">@<bdi>aknvtchtk</bdi></a> זה עובד<br />
הגדרתי שהתוכנה יפתח בלי חלון כי חשבתי שזה מה שאתה רוצה - תבדוק במנהל המשימות ותראה שיש תהליך של notepad רץ<br />
אם תסיים את התהליך, תראה שאחרי המתנה של 15 שניות זה ירוץ שוב.</p>
]]></description><link>https://tchumim.com/post/65806</link><guid isPermaLink="true">https://tchumim.com/post/65806</guid><dc:creator><![CDATA[yossiz]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:14:38 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:12:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/yossiz">@<bdi>yossiz</bdi></a> אמר ב<a href="/post/65804">עזרה בכתיבת סקריפט</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aknvtchtk">@<bdi>aknvtchtk</bdi></a> סליחה,</p>
<pre><code>while ($true) {
    Start-Process -WindowStyle hidden -FilePath notepad.exe -wait
    Start-Sleep -seconds 15
}
</code></pre>
</blockquote>
<p dir="auto">אתה עוזר לי ועוד מבקש סליחה?<br />
תודה רב ממש אבל סליחה<img src="https://tchumim.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f609.png?v=9d71ebe86e6" class="not-responsive emoji emoji-android emoji--wink" style="height:23px;width:auto;vertical-align:middle" title="😉" alt="😉" /> זה עדיין לא פעיל הוא פשוט נתקע ולא מגיב</p>
<p dir="auto"><img src="/assets/uploads/files/1561641121193-c4c9828f-a1bc-4250-9043-4f975ec24de1-image.png" alt="c4c9828f-a1bc-4250-9043-4f975ec24de1-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://tchumim.com/post/65805</link><guid isPermaLink="true">https://tchumim.com/post/65805</guid><dc:creator><![CDATA[aknvtchtk]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:12:07 GMT</pubDate></item><item><title><![CDATA[Reply to עזרה בכתיבת סקריפט on Thu, 27 Jun 2019 13:08:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aknvtchtk">@<bdi>aknvtchtk</bdi></a> סליחה,</p>
<pre><code>while ($true) {
    Start-Process -WindowStyle hidden -FilePath notepad.exe -wait
    Start-Sleep -seconds 15
}
</code></pre>
]]></description><link>https://tchumim.com/post/65804</link><guid isPermaLink="true">https://tchumim.com/post/65804</guid><dc:creator><![CDATA[yossiz]]></dc:creator><pubDate>Thu, 27 Jun 2019 13:08:12 GMT</pubDate></item></channel></rss>