<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	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>It | Tomasz Kiżewski</title>
	<atom:link href="https://kizewski.eu/category/it/feed/" rel="self" type="application/rss+xml" />
	<link>https://kizewski.eu</link>
	<description></description>
	<lastBuildDate>Fri, 25 Apr 2025 20:15:34 +0000</lastBuildDate>
	<language>pl-PL</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>Windows Server 2012 R2 Standard ROK &#8211; change product key from Evaluation</title>
		<link>https://kizewski.eu/it/1441/</link>
					<comments>https://kizewski.eu/it/1441/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Fri, 25 Apr 2025 20:14:49 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1441</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>To change key from Evaluation to Standard use command like below:</p>
<p>&nbsp;</p></div>
			</div><div class="et_pb_module et_pb_code et_pb_code_0">
				
				
				
				
				<div class="et_pb_code_inner">DISM /online /Set-Edition:ServerStandard /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula</div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1441/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Find all files containing a specific text (string) on Linux</title>
		<link>https://kizewski.eu/it/1432/</link>
					<comments>https://kizewski.eu/it/1432/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Tue, 15 Apr 2025 18:52:13 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Memo]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1432</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_1 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_1">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Do the following:</p>
<pre class="lang-none s-code-block"><code>grep -rnw '/path/to/somewhere/' -e 'pattern'
</code></pre>
<ul>
<li><code>-r</code><span> </span>or<span> </span><code>-R</code><span> </span>is recursive,</li>
<li><code>-n</code><span> </span>is line number, and</li>
<li><code>-w</code><span> </span>stands for match the whole word.</li>
<li><code>-l</code><span> </span>(lower-case L) can be added to just give the file name of matching files.</li>
<li><code>-e</code><span> </span>is the pattern used during the search</li>
</ul>
<p>Along with these,<span> </span><code>--exclude</code>,<span> </span><code>--include</code>,<span> </span><code>--exclude-dir</code><span> </span>flags could be used for efficient searching:</p>
<ul>
<li>This will only search through those files which have .c or .h extensions:<br /><br />
<pre class="lang-none s-code-block"><code>grep --include=\*.{c,h} -rnw '/path/to/somewhere/' -e "pattern"
</code></pre>
</li>
<li>This will exclude searching all the files ending with .o extension:<br /><br />
<pre class="lang-none s-code-block"><code>grep --exclude=\*.o -rnw '/path/to/somewhere/' -e "pattern"
</code></pre>
</li>
<li>For directories it&#8217;s possible to exclude one or more directories using the<span> </span><code>--exclude-dir</code><span> </span>parameter. For example, this will exclude the dirs<span> </span><code>dir1/</code>,<span> </span><code>dir2/</code><span> </span>and all of them matching<span> </span><code>*.dst/</code>:<br /><br />
<pre class="lang-none s-code-block"><code>grep --exclude-dir={dir1,dir2,*.dst} -rnw '/path/to/search/' -e "pattern"
</code></pre>
</li>
</ul>
<p>This works very well for me, to achieve almost the same purpose like yours.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>source: https://stackoverflow.com/questions/16956810/find-all-files-containing-a-specific-text-string-on-linux</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1432/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SQL Server Configuration Manager</title>
		<link>https://kizewski.eu/it/1425/</link>
					<comments>https://kizewski.eu/it/1425/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Thu, 03 Apr 2025 18:14:19 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1425</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_2 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_2">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h1 id="sql-server-configuration-manager">SQL Server Configuration Manager</h1>
<table aria-label="Table 1" class="table table-sm margin-top-none">
<thead>
<tr>
<th>Version</th>
<th>Path</th>
</tr>
</thead>
<tbody>
<tr>
<td>SQL Server 2022 (16.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager16.msc</code></td>
</tr>
<tr>
<td>SQL Server 2019 (15.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager15.msc</code></td>
</tr>
<tr>
<td>SQL Server 2017 (14.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager14.msc</code></td>
</tr>
<tr>
<td>SQL Server 2016 (13.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager13.msc</code></td>
</tr>
<tr>
<td>SQL Server 2014 (12.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager12.msc</code></td>
</tr>
<tr>
<td>SQL Server 2012 (11.x)</td>
<td><code>C:\Windows\SysWOW64\SQLServerManager11.msc</code></td>
</tr>
</tbody>
</table>
<div class="display-flex justify-content-space-between align-items-center flex-wrap-wrap page-metadata-container">
<div class="margin-right-xxs">
<ul class="metadata page-metadata" data-bi-name="page info" lang="en-us" dir="ltr"></ul>
</div>
</div></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1425/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Przedłużenie czasu Windows Server 2012 R2 Evaluation</title>
		<link>https://kizewski.eu/it/1416/</link>
					<comments>https://kizewski.eu/it/1416/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Tue, 18 Mar 2025 07:53:49 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1416</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_3 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_3">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Przedłużenie Windows Server 2012 R2 Evaluation</p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_4">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_code et_pb_code_1">
				
				
				
				
				<div class="et_pb_code_inner"> slmgr.vbs -rearm</div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1416/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Outlook New &#8211; powrót do wersji klasycznej</title>
		<link>https://kizewski.eu/it/1400/</link>
					<comments>https://kizewski.eu/it/1400/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Fri, 06 Sep 2024 09:32:17 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Memo]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1400</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_4 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_5">
				<div class="et_pb_column et_pb_column_1_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough">
				
				
				
				
				<div class="et_pb_module et_pb_image et_pb_image_0">
				
				
				
				
				<span class="et_pb_image_wrap "><img fetchpriority="high" decoding="async" width="225" height="225" src="https://kizewski.eu/wp-content/uploads/2024/09/outlok-new.jpeg" alt="" title="outlok-new" srcset="https://kizewski.eu/wp-content/uploads/2024/09/outlok-new.jpeg 225w, https://kizewski.eu/wp-content/uploads/2024/09/outlok-new-150x150.jpeg 150w" sizes="(max-width: 225px) 100vw, 225px" class="wp-image-1405" /></span>
			</div>
			</div><div class="et_pb_column et_pb_column_3_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_heading et_pb_heading_0 et_pb_bg_layout_">
				
				
				
				
				<div class="et_pb_heading_container"><h2 class="et_pb_module_heading">Outook New - powrót do wersji klasycznej.</h2></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_5 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_6">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Jeśli nie widzisz przełącznika w nowym programie Outlook dla systemu Windows, rozwiąż problem, wykonując następujące czynności:</p>
<p>Uruchom klasyczną wersję programu Outlook dla systemu Windows z menu Start systemu Windows, a nie nowego programu Outlook (oznaczonego tagiem „Nowy”).</p>
<p>Jeśli to nie uruchomi starej wersji to:</p>
<p><strong>Otwórz Edytor</strong> rejestru, wpisując „<strong>regedit</strong>” w wyszukiwarce menu Start i wybierając aplikację.<br />Przejdź do <strong>Komputer\HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook\Preferences</strong>.<br />Znajdź i kliknij dwukrotnie pozycję „<strong>UseNewOutlook</strong>” u dołu listy.<br />Ustaw pole Dane wartości na <strong>0</strong>.</p>
<p>Spróbuj uruchomić klasyczny program Outlook dla systemu Windows z menu Start systemu Windows.</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1400/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>QNAP [Antivirus] Failed to update virus definitions. No storage volume detected. Create a new volume.</title>
		<link>https://kizewski.eu/it/qnap-antivirus-failed-to-update-virus-definitions-no-storage-volume-detected-create-a-new-volume/</link>
					<comments>https://kizewski.eu/it/qnap-antivirus-failed-to-update-virus-definitions-no-storage-volume-detected-create-a-new-volume/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Fri, 25 Aug 2023 07:21:49 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1228</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_6 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_7">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h2><span> QNAP  &#8211; [Antivirus] Failed to update virus definitions. No storage volume detected. Create a new volume.</span></h2></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_7 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_8">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><span style="color: #ff0000;"><strong>PROBLEM:</strong></span></p>
<p><span>NAS Name: YourNasName</span><br /><span>Severity: Warning</span><br /><span>Date/Time: 2023/01/22 19:53:32</span></p>
<p><span>App Name: Antivirus</span><br /><span>Category: Settings</span><br /><span>Message: [Antivirus] Failed to update virus definitions. No storage volume detected. Create a new volume.</span></p>
<div id="gtx-trans" style="position: absolute; left: 69px; top: 205.667px;">
<div class="gtx-trans-icon"></div>
</div></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div><div class="et_pb_section et_pb_section_8 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_9">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><span style="color: #008000;"><strong>ROZWIĄZANIE:</strong></span></p>
<p>W większości przypadków pomaga uruchomienie sprawdzania DataVol1</p>
<p>Pamięć masowa i migawki -&gt; Pamięć masowa/migawki -&gt; DataVol1 -&gt; Zarządzaj -&gt; Akcje -&gt;Sprawdz system plików.</p>
<p>Sprawdzanie uruchamiamy mimo tego iż volumen nie pokazuję zadnych błędów.</p>
<p>Po tym aktualizacje Antywirusa najczęściej zaczynają działać normalnie.</p>
<p>Należy pamiętać, że podczas sprawdzania dane na DataVol1 będą niedostępne.</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/qnap-antivirus-failed-to-update-virus-definitions-no-storage-volume-detected-create-a-new-volume/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[MSSQL] Log Full</title>
		<link>https://kizewski.eu/it/1192/</link>
					<comments>https://kizewski.eu/it/1192/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Fri, 20 Jan 2023 18:32:19 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[MSSQL]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1192</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[

<div class="et_pb_section et_pb_section_9 et_section_regular" >
				
				
				
				
				
				
				
				
				
			</div>

]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1192/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Program płatnik nie jest w stanie rozpoznać wersji bazy danych</title>
		<link>https://kizewski.eu/it/1043/</link>
					<comments>https://kizewski.eu/it/1043/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Tue, 09 Feb 2021 15:29:12 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=1043</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_10 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_10">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><h3 class="comments-title">Program płatnik nie jest w stanie rozpoznać wersji bazy danych</h3></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_11">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p><a href="%20http://ftp1.zus.gda.pl/dystrybucja/a1_10_02_002/dodatki/P2StartFix.exe">http://ftp1.zus.gda.pl/dystrybucja/a1_10_02_002/dodatki/P2StartFix.exe</a></p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/1043/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Directory, Template, Iso na puli ZFS [Proxmox]</title>
		<link>https://kizewski.eu/it/990/</link>
					<comments>https://kizewski.eu/it/990/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Sat, 21 Mar 2020 15:20:47 +0000</pubDate>
				<category><![CDATA[It]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=990</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<p><div class="et_pb_section et_pb_section_11 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_12">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Dodajemy nową instancję pulę backup </p>
<p>zfs create pool/backup -o mountpoint=/backup</p>
<p>Następnie w pliku konfiguracyjnym  /etc/pve/storage.cfg dodajemy:</p>
<p>dir: backup<br />  path /mnt/backup<br />  content vztmpl,iso,backup<br />  maxfiles 5<br />  shared 0</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div></p>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/990/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>GLPI &#8211; Jak zmienić jednostkę dla komputera</title>
		<link>https://kizewski.eu/it/glpi-zmiana-jednostki-dla-komputera/</link>
					<comments>https://kizewski.eu/it/glpi-zmiana-jednostki-dla-komputera/#respond</comments>
		
		<dc:creator><![CDATA[Tomek]]></dc:creator>
		<pubDate>Sat, 04 Jan 2020 16:16:00 +0000</pubDate>
				<category><![CDATA[GLPI]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[OCS]]></category>
		<guid isPermaLink="false">https://kizewski.eu/?p=971</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section et_pb_section_12 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_13">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p style="text-align: center;"><em><strong>GLPI &#8211; Jak zmienić Jednostkę dla komputera/ów.</strong></em></p></div>
			</div>
			</div>
				
				
				
				
			</div><div class="et_pb_row et_pb_row_14">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Sprawa może się wydawać dość oczywista, aczkolwiek niekoniecznie.</p>
<p>Jeśli chcemy przenieść komputer do innej jednostki wybietamy: Assets-&gt;computers</p>
<p>Następnie na liście zaznaczamy komputery które chcemy przeniść do innej grupy i wybieramy Actions-&gt;Add to transfer list.</p>
<p>Jeśli na liście nie ma tej akcji do wybrania oznacza to, że nie jesteś dodany jako menadżer do żądnej innej jednostki.</p>
<p>Musisz uzupełnić: Home-&gt; Administration-&gt; Entities -&gt; Users</p>
<p>&nbsp;</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
]]></content:encoded>
					
					<wfw:commentRss>https://kizewski.eu/it/glpi-zmiana-jednostki-dla-komputera/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
