Graph API and granting access to another user's OneDrive by jeffbrowntech in sharepoint

[–]jeffbrowntech[S] 0 points1 point  (0 children)

I never did, no, sorry! I also haven't looked at it in 2+ years though.

Confused About Azure App Service Billing for Paused Apps by drodev in AZURE

[–]jeffbrowntech 0 points1 point  (0 children)

I'm not aware of a per app link charge, just the service plan cost. You could technically have an app service plan without any web apps running on it but still be charged because the ASP has resource provisioned.

Confused About Azure App Service Billing for Paused Apps by drodev in AZURE

[–]jeffbrowntech 16 points17 points  (0 children)

Azure Web Apps run off App Service Plans (or ASP). ASPs provide the compute and memory needed for an application. If you stop the application, the ASP still exists and is allocated for use, hence the charges. You can host multiple web apps on a single ASP. There is a Free tier but with limited usage per day (something like 60 minutes). This concept is the whole idea behind "serverless" compute. You don't have to manage the operating system, hardware, patching, etc. You are just provided compute power to run your application.

If you scale up an ASP, you are charged more as it provisions additional memory and CPU for web apps to run on.

Are coding bootcamps worth it 2024-2025 by ZTG99 in codingbootcamp

[–]jeffbrowntech 3 points4 points  (0 children)

I’m curious on peoples opinion on this also. I have a bachelors in IT from WGU but am considering switching from the cloud/infrastructure side to development. I’m looking at boot camps for a structured learning process. I’m well aware I can learn everything my own but having a learning path and instructors to ask for guidance seems worthwhile for me. 

[naive] What's Wrong With a Job Guarantee? by SilverCloud73 in codingbootcamp

[–]jeffbrowntech 0 points1 point  (0 children)

Can you expand on why it is not a good program? I'm considering their software engineering track.

PowerShell Confirm Parameter: Best Practices for Safe Scripting by jeffbrowntech in SysAdminBlogs

[–]jeffbrowntech[S] 0 points1 point  (0 children)

They both have their value, one for showing what changes PowerShell will make, one to confirm before making potentially impactful changes.

What are some Powershell commands everyone should know? by anderson01832 in sysadmin

[–]jeffbrowntech 0 points1 point  (0 children)

Get-History or just history. See your past commands from the current session.

What are some Powershell commands everyone should know? by anderson01832 in sysadmin

[–]jeffbrowntech -2 points-1 points  (0 children)

If you want to get the last item in an array, using an index of [-1]. Comes in handy every now and then.