<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: How To Connect-MsolService without Login Prompt	</title>
	<atom:link href="https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-connect-msolservice-without-login-prompt</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2023 18:20:54 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Luis Marin		</title>
		<link>https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/comment-page-1/#comment-255890</link>

		<dc:creator><![CDATA[Luis Marin]]></dc:creator>
		<pubDate>Mon, 22 Aug 2022 01:03:54 +0000</pubDate>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4531#comment-255890</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/comment-page-1/#comment-253862&quot;&gt;Gareth&lt;/a&gt;.

Do you have any update ?  is there a way to fix this issue?

Thank you for the support]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/comment-page-1/#comment-253862">Gareth</a>.</p>
<p>Do you have any update ?  is there a way to fix this issue?</p>
<p>Thank you for the support</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Luis Marin		</title>
		<link>https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/comment-page-1/#comment-255889</link>

		<dc:creator><![CDATA[Luis Marin]]></dc:creator>
		<pubDate>Mon, 22 Aug 2022 01:02:41 +0000</pubDate>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4531#comment-255889</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/comment-page-1/#comment-230959&quot;&gt;Uwe&lt;/a&gt;.

any solution for it ?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/comment-page-1/#comment-230959">Uwe</a>.</p>
<p>any solution for it ?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gareth		</title>
		<link>https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/comment-page-1/#comment-253862</link>

		<dc:creator><![CDATA[Gareth]]></dc:creator>
		<pubDate>Fri, 01 Jul 2022 17:00:12 +0000</pubDate>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4531#comment-253862</guid>

					<description><![CDATA[This doesn&#039;t work for me either. I send my credentials, but it still brings up a window asking me to sign into my Microsoft account, which kind of defeats the point. I then input the very same credentials and it signs me in. Strange that it doesn&#039;t work for me, but well that&#039;s just my luck]]></description>
			<content:encoded><![CDATA[<p>This doesn&#8217;t work for me either. I send my credentials, but it still brings up a window asking me to sign into my Microsoft account, which kind of defeats the point. I then input the very same credentials and it signs me in. Strange that it doesn&#8217;t work for me, but well that&#8217;s just my luck</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Uwe		</title>
		<link>https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/comment-page-1/#comment-230959</link>

		<dc:creator><![CDATA[Uwe]]></dc:creator>
		<pubDate>Fri, 03 Sep 2021 15:33:53 +0000</pubDate>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4531#comment-230959</guid>

					<description><![CDATA[For me, this does not work. The &quot;Connect-MsolService&quot; call simply ignores the passed credentials as if they weren&#039;t specified at all.

Maybe this is because I specified an account with activated 2FA.]]></description>
			<content:encoded><![CDATA[<p>For me, this does not work. The &#8220;Connect-MsolService&#8221; call simply ignores the passed credentials as if they weren&#8217;t specified at all.</p>
<p>Maybe this is because I specified an account with activated 2FA.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Conor		</title>
		<link>https://www.kjctech.net/how-to-connect-msolservice-without-login-prompt/comment-page-1/#comment-229820</link>

		<dc:creator><![CDATA[Conor]]></dc:creator>
		<pubDate>Sun, 15 Aug 2021 07:48:58 +0000</pubDate>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4531#comment-229820</guid>

					<description><![CDATA[If it&#039;s a script for techs to use, I usually put in something a bit lazy:
$upn = get-aduser $env:username &#124; select -expandproperty userprincipalname
$creds = get-credential $upn; connect-msolservice -credential $creds

Just means people don&#039;t have to enter their email haha, without any security risk! :)
You can do something similar with Azure cmdlets (remove get-credential as it doesn&#039;t support MFA)]]></description>
			<content:encoded><![CDATA[<p>If it&#8217;s a script for techs to use, I usually put in something a bit lazy:<br />
$upn = get-aduser $env:username | select -expandproperty userprincipalname<br />
$creds = get-credential $upn; connect-msolservice -credential $creds</p>
<p>Just means people don&#8217;t have to enter their email haha, without any security risk! 🙂<br />
You can do something similar with Azure cmdlets (remove get-credential as it doesn&#8217;t support MFA)</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
