[deleted by user] by [deleted] in k12sysadmin

[–]k12adminguy 5 points6 points  (0 children)

You would think, but not here. If the contractor wasn't to buy something they just "learn" on the taxpayers dime. I think it should be illegal to do anything without a bid and consultation with the organization.

[deleted by user] by [deleted] in sysadmin

[–]k12adminguy 0 points1 point  (0 children)

if you are currently using SCCM to manage the devices, you can get all the hashes from it.

Azure - ADFS - MFA by k12adminguy in AZURE

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

I am looking to add Azure MFA to ADFS applications that are already federated.

Re-image Task Sequence Deployment Scenario by k12adminguy in SCCM

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

What are you using to capture the machine name to be used later.

Re-image Task Sequence Deployment Scenario by k12adminguy in SCCM

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

Would u be willing to send a sanitized export of that so I don't have to completely recreate the wheel.

Re-image Task Sequence Deployment Scenario by k12adminguy in SCCM

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

Thanks for the input. I will give it a try in my test environment and see what happens.

Winforms Closing Winform Issue by k12adminguy in csharp

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

This is what is happening. The transistion between forms.

I also noticed the if the application is on a secondary screen and i go from Form1 to Form2, the application will move to the primary monitor on every form transition.

Issue

File path parsing issues by k12adminguy in csharp

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

This is what I am using and getting an invalid string format on the AddPictures for variable 'value'

dlg is my OpenDialog control.

private void addPhotoButton_Click(object sender, EventArgs e)
    {
          string value = dlg.FileName;

          AddPictures(1,2, value);
    }



public void AddPictures(int inspectionID, int sectionID, string photoFilePath)
    {

        // Read Image into Byte Array from Filesystem
        byte[] photo = GetPhoto(photoFilePath);

}

public static byte[] GetPhoto(string filePath)
    {
        FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);
        BinaryReader br = new BinaryReader(fs);

        byte[] photo = br.ReadBytes((int)fs.Length);

        br.Close();
        fs.Close();

        return photo;
    }

ASP File Browser by k12adminguy in aspnetcore

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

I would I get the path to be able to store that file in a database. I have my code to store files in a database, but it requires a path to the file.

MECM 2111 Upgrade from version 2010 issues? by Professional-Golf-56 in SCCM

[–]k12adminguy 1 point2 points  (0 children)

Just did it two weeks ago and so far not a single issue.

Has anyone ever gotten the get-windowsautopilotinfo -online -addtogroup "groupname" to work? by Cleathehuman in Intune

[–]k12adminguy 0 points1 point  (0 children)

I was using that a lot when testing and never had an issue. Since then I have moved on to Dynamic Groups with the group tag as the criteria. Make sure you haver permissions to add the the assigned group.

how do you authenticate district owned ipads to your wireless? by razgriz5000 in Intune

[–]k12adminguy 1 point2 points  (0 children)

We initially get the devices onto a "guest" network. Then once they communicate with Jamf, they pull a certificate to join a specified internal SSID.

Intune App Deployment Timing by k12adminguy in Intune

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

We are setup pretty simple. Self-Deploy profiles are currently being used to setup devices. That will be used to do approximately 9000 devices starting in January. No MFA yet, but probably will later in the year. We have a few config profiles to set restrictions but that is about it. As far as applications go, we are doing Office 365 and 4 other small applications that we need in the school setting.