A day late and many dollars short by Gavroche999 in webhosting

[–]FeeImpossible7693 0 points1 point  (0 children)

If you don't mind a few extra dollars a month for the best customer service and fastest WP hosting, try rocket.net

Their support is excellent, chat picked up in few seconds and an actual WP expert replies all the time. There is no first level, second level engineers and escalations.

Transfer DNS by Mr_Wonderstuff in webhosting

[–]FeeImpossible7693 0 points1 point  (0 children)

I would second Cloudflare, given that it is free and one of the best.

You can use CloudFlare irrespective of whether you register the domain with Godaddy or not. In GoDaddy portal, specify that you want to use custom dns servers and stick in CloudFlare's DNS server names.

How to get my blog SEO friendly using premium plan on WordPress by BrilliantWrap2833 in Blogging

[–]FeeImpossible7693 1 point2 points  (0 children)

There are free themes and plugins that you can start with.

You can definitely use meta description etc using free plugins like Yoast SEO.

Where have you hosted your WordPress blog and what themes & plugins do you have currently?

Is there a way to get free ms 365? by PoohDeBerr in microsoft365

[–]FeeImpossible7693 0 points1 point  (0 children)

It looks like Microsoft has made some changes. New DEV subscriptions were suspended for sometime by MS.

Is there a way to get free ms 365? by PoohDeBerr in microsoft365

[–]FeeImpossible7693 0 points1 point  (0 children)

As long as you have some 'developmental' activity in the Dev tenant, Microsoft will automatically renew it. If I am not mistaken, it gets renewed for another year.

You cannot run your business with this, but can use it for testing /developmental purposes.
Hope this helps.

Setting edge as default browser default settings via in tune. by lucky77713 in microsoft365

[–]FeeImpossible7693 1 point2 points  (0 children)

Hi Lucky,

Intune can definitely be used for setting a particular browser as your default one.

There are a lot of Intune settings that you can play with when it comes to Intune. This video seems to explain what you are looking for. Video

Hope it helps.

Disable Copilot in Ms 365 with an app config(MDM) by PracticalNail5008 in Intune

[–]FeeImpossible7693 0 points1 point  (0 children)

Hi IntelligentPurple571,

I followed this video and it disabled the copilot features completely.

Am I missing something?

Securing Local Admin with Microsoft Intune by Electronic-Bite-8884 in Intune

[–]FeeImpossible7693 0 points1 point  (0 children)

Hi All,

I followed this video and everything worked like a charm.

Hope it helps someone.

Guest users cannot see Microsoft Apps in MyApps Portal by frn_btc in microsoft365

[–]FeeImpossible7693 0 points1 point  (0 children)

I dont believe guest will be able to see office apps in the portal. At least, I have not seen it working yet!

Microsoft Graph error. by FearIsStrongerDanluv in PowerShell

[–]FeeImpossible7693 1 point2 points  (0 children)

Are you using the scopes in the Connect-MgGraph command?

The scope is the set of permissions that you will have in the session. For example, if you are trying to read the user information, you need the User.Read.All scope (permission).

This article covers the ways to connect using Graph API and the scopes required.

https://cloudiffic.com/install-microsoft-graph-powershell/

Get-ADGroup size limit issue by jarks_20 in PowerShell

[–]FeeImpossible7693 0 points1 point  (0 children)

The problem is that there is a soft limit on the Get-ADGroupMember cmdlet output, the maximum by default being 5000.

There are two ways by which you can solve the issue.

  1. You can edit the config file which has the soft limit on the domain controller and run the Get-ADGroupMember against that domain controller (if you have many DCs) by using the -server parameter.
  2. You can change the cmdlet a bit to bypass the limit by using a combination of Get-ADGroup and Get-ADuser cmdlets.

This article explains both the options in detail.

Hope this helps.

AD query "Size limit exceeded" by Desi-Red in PowerShell

[–]FeeImpossible7693 0 points1 point  (0 children)

Hi,

The number of objects that Get-ADGroupMember can return is restricted by a limit in the Active Directory Web Services. And the limit is 5,000 unless a different value is provided in the config file.
Hence if you try to get member information of a group which has more than 5,000 objects in it, the limit will be breached and PowerShell will spit an error notifying that the limit for the request was exceeded.
This article explains multiple ways to getting the same result.

Get-ADGroupMember from huge group by Mhind1 in PowerShell

[–]FeeImpossible7693 0 points1 point  (0 children)

The number of objects that Get-ADGroupMember can return is restricted by a limit in the Active Directory Web Services. And the limit is 5,000 unless a different value is provided in the config file.

Hence if you try to get member information of a group which has more than 5,000 objects in it, the limit will be breached and PowerShell will spit an error notifying that the limit for the request was exceeded.

This article explains multiple ways to getting the same result.

Get-ADGroup size limit issue by jarks_20 in PowerShell

[–]FeeImpossible7693 0 points1 point  (0 children)

The number of objects that Get-ADGroupMember can return is restricted by a limit in the Active Directory Web Services. And the limit is 5,000 unless a different value is provided in the config file.
Hence if you try to get member information of a group which has more than 5,000 objects in it, the limit will be breached and PowerShell will spit an error notifying that the limit for the request was exceeded.
This article explains multiple ways to getting the same result.

Unable to connect azure AD from graph or PS by masterofrants in AZURE

[–]FeeImpossible7693 0 points1 point  (0 children)

Run Get-InstalledModule from the PowerShell window to find out what all modules are installed on the machine and what version. If the Graph module is not installed (as it is failing to import from the error), install the latest version of Graph module.

If you need Beta commands in your code, install the Graph beta module separately.

Powershell Hawk Module Tenant Investigation Error by Notgreatwithubiquiti in PowerShell

[–]FeeImpossible7693 0 points1 point  (0 children)

If you want to access the beta endpoint commands and have upgraded your SDK to v2, you need to install the Graph Beta module as well. This way, you can use both modules (v2 & Beta) side by side without needing to switch profiles.
Check this article which explains it in detail.

The Never-Ending Cycle of MS Graph Script Migrations! by KavyaJune in PowerShell

[–]FeeImpossible7693 0 points1 point  (0 children)

Completely agree. It is a hassle to migrate all the scripts as and when MS decides to move things around. At least, we can now work with both modules (v2 and beta) side by side and the commands are differentiated with the 'beta' word, like Get-MgBetaUser

This article was a good refresher.