PNP PowerShell Down Detect SPO
21:34
Пікірлер
@Alp____D.Carpediem
@Alp____D.Carpediem Күн бұрын
What are you using to get These red rectangles and arrows onto the screen ?
@fakharahmedkhan5157
@fakharahmedkhan5157 2 күн бұрын
Video is really awesome, it helped. May I know how did you get client id and secret id for audit log configuration?
@DaisyZhangduck
@DaisyZhangduck 2 күн бұрын
Great Thanks for your excellent veido, i did it which troubled me a week !!!
@alejandrocastro211
@alejandrocastro211 5 күн бұрын
Hi! Thank you for uploading this video, it has been very insightful. I've been trying to solve a related issue for weeks but still haven't managed to resolve it. I've uploaded many custom .aspx files to the site, all of which worked perfectly. However, starting a few weeks ago, every new custom .aspx file I upload gets downloaded instead of being rendered. Older custom .aspx files still render without any problems. Things get even stranger. If I copy one of the old files, it will render. But if I change the file's extension (for example, to .txt) and then change it back to .aspx, it won’t render anymore. The fact that all the old custom .aspx files render while the new ones do not is puzzling. The "NoExecute" property is indeed set to "0" for the old files and to "1" for the new ones. I've tried everything to change the new files to "0," but I haven't succeeded. Thank you for reading!
@jab-mt5lg
@jab-mt5lg 12 күн бұрын
Trying to run the PowerShell script. When running Connect-PNPOnline, getting "A parameter cannot be found that matches parameter name 'Interactive'.
@NarelleHobbs-f8x
@NarelleHobbs-f8x 13 күн бұрын
Great video, easy to follow, clear instructions. Thanks for sharing.
@SarathKumarNSK
@SarathKumarNSK 17 күн бұрын
We already created certificate, and site provisioned with sharepoint . How do I connect using certificate in C# Code? Do u have any references? Do we need a certificate password to use the certificate in my c# web applications?
@It_Is_Shubham
@It_Is_Shubham 23 күн бұрын
This was super helpful. You are awesome
@abdullibrahim7015
@abdullibrahim7015 23 күн бұрын
Nice work!
@sametdemirel708
@sametdemirel708 26 күн бұрын
thanks sir, but i have a more small solution :D first, move migrationtoolstorage folder to d drive and run this on command shell(admin): mklink /D "C:\Users\%username%\AppData\Roaming\Microsoft\MigrationToolStorage\" "D:\migrationtoolstorage"
@HânVũQuang-h4f
@HânVũQuang-h4f Ай бұрын
Very helpful thank you sir
@sundreamoracle1284
@sundreamoracle1284 Ай бұрын
thANK YOU!!!!!
@LucyConnelly-r4z
@LucyConnelly-r4z Ай бұрын
Thank you SPJeff, I never would have seen that tiny "expand record column" button...
@DonCurrier
@DonCurrier Ай бұрын
Second question, what happens when support for apps ends in April of 2026? This is on my admin screen apps page. "Starting April 2, 2026, SharePoint add-ins will be retired for SharePoint in Microsoft 365 and users will no longer be able to use SharePoint add-ins. Installing SharePoint add-ins from the SharePoint Store will not be possible as of July 1, 2024."
@DonCurrier
@DonCurrier Ай бұрын
I am going to assume I do the PNP for the site, But add the CSS to the specific page I want to expand? I don't want all pages to be expanded, some of the pages are classic look and some Modern look from the On Prem migration to online years past. What I am trying to do is create a new home page that is the modern look as the old page has the classic look. But they want that extra real estate and no white spaces on the sides.
@c.raccioni
@c.raccioni Ай бұрын
thanks
@ZaidSaleh-bm9tv
@ZaidSaleh-bm9tv Ай бұрын
Perfect
@xarzu
@xarzu Ай бұрын
You have done a great thing by making this.
@silicondt1
@silicondt1 Ай бұрын
So I made the "app" with those permissions and my runbook worked for about a year and the certificate expired for the app. How do I renew the certificate? Or should I just make a new app? Or should I just move to managed identity instead lol? Does managed identity support being able to give permissions to pnp.powershell
@DuasPowerPlatNuggets
@DuasPowerPlatNuggets Ай бұрын
Great Content. Great Explanation Helped me Alot . Thank you !!
@LatinoTropico
@LatinoTropico Ай бұрын
This is just what I was after, but I am new to Sharepoint lists. I thought they are limited to 2000 rows (for Powerapps anyway)? I have over 250,000 records I want to load from SQL server to Sharepoint List. I know, it can be done, but I will have to use pagination tricks when I am developing my Powerapp. My question is, do I have to pre-create the Sharepoint list structure before running this script? I assume it only works if all the column names are exactly the same? Thanks
@testmeb2157
@testmeb2157 2 ай бұрын
Very easy to follow, thank you so much!
@tmcpang
@tmcpang 2 ай бұрын
Hi, thank you for the video. It's very cool. I wonder how to use the Content link in the CEWP+CSS web part. Do I just throw in the url of where I store the css file?
@thulsa_doom
@thulsa_doom 2 ай бұрын
Excellent tutorial, thanks a lot!
@Tyler-x7g2e
@Tyler-x7g2e 2 ай бұрын
What a brilliant video! Thanks
@OleksiiH
@OleksiiH 3 ай бұрын
Many thanks for the instruction!
@wandelwereld
@wandelwereld 3 ай бұрын
Hello, when running your script this error appears : InvokeApi: The term 'Test-PowerAppsAccount' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. Please Help
@chrissnell6334
@chrissnell6334 3 ай бұрын
You had me at Snazzy Buttons
@acchukatlagousiya4773
@acchukatlagousiya4773 3 ай бұрын
what if I have multiple runs for a sharepoint item?
@murch5054
@murch5054 3 ай бұрын
Guys! I managed to see in the video, the part that hee paste and that we cant see. Its the following: # Azure Certificate $password = "password" $secPassword = $password | ConvertTo-SecureString -AsPlainText -Force $cert = Get-AutomationCertificate -Name 'PnP.PowerShell' $pfxCert = $cert.Export("pfx", $password) $certPath = "PnP-PowerShell.pfx" Set-Content -Value $pfxCert -Path $certPath -Force -encoding Byte
@aragaorj
@aragaorj 3 ай бұрын
I needed to understand how to search for the type of event that occurred with a schedule. For example, when it is canceled there is the iscanceled attribute, but for appointments that have been declined and are still listed on the calendar, how do I get their status? I already did a search and didn't find this. My purpose is to program a script to search for declined appointments and delete them automatically. I'm doing this in Powershell
@kartickraj3044
@kartickraj3044 3 ай бұрын
This is working fine could you please also explain how to do that in Two Column Section also
@jennoian
@jennoian 4 ай бұрын
where is the code link?
@BarrySwords
@BarrySwords 4 ай бұрын
Nice trick! Personally I would not say it's worth the effort but I know some people who would do anything to avoid working in Edge
@murch5054
@murch5054 4 ай бұрын
cant read... : (
@jerrymorales-v2v
@jerrymorales-v2v 4 ай бұрын
Thank you for this. I just have a quick question: When the approvals are sent, the assigned users can click "Approve," but the item is not created on SharePoint (they would receive a separate email). Then, I, as the owner of the flow, would also get a notification. Once I choose "approve," the calendar item appears on the SharePoint Calendar. I have granted shared access to two of the users for the automated flow, but the issue persists. Is there anything I am doing wrong?
@noxnostalgia9299
@noxnostalgia9299 4 ай бұрын
I tried all of these, but the moment I deleted the thumbprint saved in mmc, everything started to fail. It says that it cannot find the thumbprint, even though we uploaded it in the App registration. What is the purpose of the App Registration's thumbprint? If we deploy a script with this authentication method, to let's say, Azure Automation, will the script still work? Or will it start looking for that local thumbprint?
@bajishahid2293
@bajishahid2293 Ай бұрын
You need to have certificate in local machine forever
@DaisyZhangduck
@DaisyZhangduck 2 күн бұрын
The file of working( C:\DynamicsTools\working)has been deleted after you install Generate Self-Signed Certificates,deleted the VHD and install a new one.
@kevinshea5855
@kevinshea5855 4 ай бұрын
Jeff, this is great. If we need to process from SPlist to SQL, do you have any session for that?
@IshaniPiumika
@IshaniPiumika 4 ай бұрын
Can we use this method to save documents in sharepoint list
@DeepakKashyap-fr3ek
@DeepakKashyap-fr3ek 4 ай бұрын
HI Jeff, thank you for your wonderful videos. I have query plz. I have created a workflow on PAD and added the scheduler via Power Automate cloud ( As I have premium license ) so i can access my flow on cloud as well. My question is. in this case, will my flow run in case if my Laptop is turned off.?
@nevilleattkins586
@nevilleattkins586 5 ай бұрын
nice one !
@CephusJones
@CephusJones 5 ай бұрын
Thanks for the video. Curious to know why there is no official MS built in functionality that can do this.
@aheloizaleal
@aheloizaleal 5 ай бұрын
Tks for this!!
@dustinm2009
@dustinm2009 5 ай бұрын
THANK YOU.
@KlausAlgreen
@KlausAlgreen 5 ай бұрын
What a brilliant, spot-on and effective walthrough of a great solution. I've tried using PowerAutomate for a simple delete all items in list and then add all items fetched from on-prem SQL Server. That process takes forever, so I'll be checking out your Turbo method. Thanks for sharing!
@warrenford6503
@warrenford6503 5 ай бұрын
🙌 P r o m o s m
@Yuhmz
@Yuhmz 5 ай бұрын
Thanks for making such a straightforward easy to understand tutorial for this!
@ADCUHCL2011
@ADCUHCL2011 5 ай бұрын
Thank you! Very helpful video and fixed my excel problem.
@larrybud
@larrybud 5 ай бұрын
I think at 1:48 you glossed over the dialog box and the options presented. TLDR: choose the default options. (no delimiter).
@therisingsun4828
@therisingsun4828 5 ай бұрын
Thank you for this video! What inputs do I provide to create the Microsoft Entra ID connection? I'm not exactly sure how to proceed since I'm not sure what is meant by "commercial tenant." I appreciate any help in advance.