• 0 Votes
    2 Posts
    256 Views
    EddieJenningsE

    As you know almost all drivers are a part of the kernel itself. There isn't a way to "export" them in the way that you're thinking -- at least not that I'm aware. If you installed a package that included a 3rd party hardware driver, perhaps you can just download the rpm or deb file from its repo to back it up. Some kernel modules (or groups of kernel modules) are the drivers for some hardware, and you could potentially backup those files to load later. I haven't had hardware that has required special kernel modules that would create that situation.

    To be honest, if that system crashes, reinstalling your Linux distribution will be your method of getting drivers for your hardware :).

  • Synology Cloud Sync - Export a CSV Log

    Unsolved IT Discussion
    7
    0 Votes
    7 Posts
    734 Views
    DustinB3403D

    @dbeato yeah that is a different utility (hyper-backup specifically).

    Cloud Sync doesn't actually seem to produce the report anywhere that I could find either.

    Grr

    Thanks for looking @dbeato

  • 0 Votes
    2 Posts
    983 Views
    DustinB3403D

    I got you

    # This script will export all users of the specified domain, and their group memberships to a CSV file. The usefulness of this tool is expressed when # setting up new hire employees or reviewing domain membership permissions. # It's not advisable to store the user credentials required to run this script as they can be decrypted. This script is not designed to save these credentials but could be modified to do so. # Use of this script implies that you understand what it does, and will do to with regards to your Active Directory installation members and group memberships. # As designed there are no changes made to your installation, the script simply generates a report of members, and their group memberships. # Any changes to this script are the responsibility of the person/organization which made said changes. # We cannot be held responsible for your misuse or misunderstanding of this script as it was designed. # # # # # Imports Active Directory information Import-Module Activedirectory $credentials = Get-Credential # Prompts for user credentials default user is “ ”, enter an administrator account in the form of “domain-name\administrator-account” Get-ADUser -Credential $credentials -Filter * -Properties DisplayName,EmailAddress,memberof,DistinguishedName,Enabled | % { New-Object PSObject -Property @{ UserName = $_.DisplayName EmailAddress = $_.EmailAddress DistinguishedName = $_.DistinguishedName Enabled = $_.Enabled # Deliminates the document for easy copy and paste using ";" as the delimiter. Incredibly useful for Copy & Paste of group memberships to new hire employees. Groups = ($_.memberof | Get-ADGroup | Select -ExpandProperty Name) -join ";" } # The export path is variable change to desired location on domain controller or end user computer. } | Select UserName,EmailAddress,@{l='OU';e={$_.DistinguishedName.split(',')[1].split('=')[1]}},Groups,Enabled | Sort-Object Username | Export-Csv $ENV:UserProfile\Documents\User-Permissions.csv –NTI #Function Get-SaveFile($initialDirectory) #{ #[System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | #Out-Null # #$SaveFileDialog = New-Object System.Windows.Forms.SaveFileDialog #$SaveFileDialog.initialDirectory = $initialDirectory #$SaveFileDialog.filter = "All files (*.*)| *.*" #$SaveFileDialog.ShowDialog() | Out-Null #$SaveFileDialog.filename #} # # # open dialog box to select the .nessuss file. #$InputFile = Get-OpenFile #$OutputFile = Get-SaveFile # # #$Contents = [io.file]::ReadAllText($inputfile) #$Contents = [io.file]::ReadAllText('C:\tools\wd\nessus\data\data.xml') #$Global:OutFile = [System.IO.StreamWriter] "c:\tools\wd\nessus\outfile.csv" # ##$InputFile #$OutputFile #
  • Mitel 5000 syncing between nodes

    IT Discussion
    3
    2 Votes
    3 Posts
    2k Views
    dbeatoD

    @dashrender said in Mitel 5000 syncing between nodes:

    ML don't need this - but hopefully Google will index this and help the next guy

    That's what counts.

  • 0 Votes
    30 Posts
    4k Views
    scottalanmillerS

    @momurda said in O365 Email search for Attorney -:

    @scottalanmiller Yes, and the not being able to use Discovery service, and teh not being able to add a pst to Outlook part.

    Those aren't things I'd expect a lawyer to be doing, though. That's tech work for technical people, not legal work.

  • Migrating away from XenServer

    IT Discussion
    41
    0 Votes
    41 Posts
    9k Views
    travisdh1T

    Got back to this yesterday. Running on CentOS7 as a base (best of the default options the hosting provider has/had.) Easy management through the remote virt-manager and ssh.

    @Tim_G turned me onto Kimchi as a secondary management interface as well. I've successfully installed wok and kimchi, but haven't opened the port yet, will get that done tonight after grabbing an ssl cert.

    Also got the first vm uploaded last night, tomorrow looks to be a big day in my home lab.

  • 2 Votes
    25 Posts
    4k Views
    scottalanmillerS

    And patch management and software updates are taken care of for you.

  • 0 Votes
    9 Posts
    2k Views
    DashrenderD

    I only have one VM, it is 2012 R2 on my XS.

  • 2 Votes
    15 Posts
    3k Views
    DashrenderD

    @scottalanmiller said:

    @dafyre said:

    @scottalanmiller said:

    @DustinB3403 said:

    @scottalanmiller said:

    @DustinB3403 said:

    At the moment I can access the NFS Share using WinSCP, and copy from the NFS Share to my windows PC without issue, but I don't believe I can schedule this.

    With PuTTY you can.

    Care to elaborate?

    PuTTY comes with a command line SCP client.

    I never noticed / knew that!

    Took me like a decade or so before someone pointed it out to me recently too 🙂

    it's robocopy all over again 😛