Jump to content

Uber22

Members
  • Posts

    233
  • Joined

  • Last visited

Everything posted by Uber22

  1. Hey all Just seeing if anyone know of way to push all store updates out via powershell command instead of manual job, We run some security software called [h=2]Qualys agent this has picked up lots of store app that need updating but i dont really want to be updating 100 + machines manually [/h] Thanks
  2. Solved it, i was installing 1801 changed the version and now its installing..
  3. here is the error log might help *** Mojito error was: RemoteReportingConnectionFailed; 0; None[19/03/2021 14:51:56] Information : <<< Dialog >>> Inspect Page : Leaving[19/03/2021 14:51:56] Information : <<< Dialog >>> Welcome Page : Entering[19/03/2021 14:51:56] Information : <<< Dialog >>> Welcome Page : Leaving[19/03/2021 14:51:57] Information : <<< Dialog >>> Inspect Page : Entering[19/03/2021 14:52:13] * Exception : => DPM Setup is unable to connect to MSDPMINSTANCE instance of SQL Server KM-BK.Verify that the specified computer and the instance of SQL Server meets the following requirements:1)The computer is accessible over the network.2)A firewall is not blocking requests from the DPM computer. For steps to configure the firewall on the SQL Server, follow the steps described here: http://go.microsoft.com/fwlink/?LinkId=94001.3)The specified user belongs to the Administrator group on the computer running the SQL Server instance and the sysadmin role on the SQL Server instance.4)The SQL Browser service is running on the SQL server.5)TCP/IP protocol is enabled for the specified instance of the SQL server.Microsoft.Internal.EnterpriseStorage.Dls.Setup.Exceptions.BackEndErrorException: exception ---> System.Data.SqlClient.SqlException: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling, SqlAuthenticationProviderManager sqlAuthProviderManager) at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions) at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup, DbConnectionOptions userOptions) at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection) at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions) at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry) at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry) at System.Data.SqlClient.SqlConnection.Open() at Microsoft.Internal.EnterpriseStorage.Dls.DB.SqlContext.Open() at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.InspectPage.ValidateSqlInputs(String machineName, String instanceName) --- End of inner exception stack trace --- at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.InspectPage.ValidateSqlInputs(String machineName, String instanceName) at Microsoft.Internal.EnterpriseStorage.Dls.Setup.Wizard.InspectPage.InspectThreadEntry()*** Mojito error was: RemoteSQLConnectionFailed; 0; None
  4. Hey Chris Here at the screen shots looks all ok really od i followed the guide to the T
  5. Hey All I am having bit of issus installing DPM, this is my first time installing and i am being guided by some YouTube vids. I have followed the vid for installing SQL but when trying to install DPM i get this following error.
  6. $appToMatch = '*Ninite Agent*'function Get-InstalledApps { if ([intPtr]::Size -eq 4) { $regpath = 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' } else { $regpath = @( 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*' ) } Get-ItemProperty $regpath | . { process { if ($_.DisplayName -and $_.UninstallString) { $_ } } } | Select DisplayName, Publisher, InstallDate, DisplayVersion, UninstallString | Sort DisplayName}try { $file = 'Ninite+Agent.msi' $link = "https://niniteice.s3.eu-west-2.amazonaws.com/Ninite+Agent.msi" $software = 'Ninite+Agent' $result = Get-InstalledApps | Where-Object { $_.DisplayName -like $appToMatch } If ($result -eq $null) { Write-Host "'$software' NOT is installed."; Write-Host "Starting download"; $tmp = "c:\Windows\System32\$file" Write-Host "tmp --> "+$tmp; $client = New-Object System.Net.WebClient $client.DownloadFile($link, $tmp) msiexec /i $tmp /qn Remove-Item $tmp Write-Host "Tried installing $soft_name" } else { Write-Host "'$software' is already installed." }}catch { $ErrorMessage = $_.Exception.Message Write-Host "An error occurred." Write-Host $ErrorMessage;} - - - Updated - - -
  7. Hey Am after help with a script that i am scratching my head trying to get it working. i just get an error message saying ('Ninite+Agent' NOT is installed.Starting downloadtmp --> +c:\Windows\System32\Ninite+Agent.msiTried installing ) Here is my script. $appToMatch = '*Ninite Agent*'function Get-InstalledApps { if ([intPtr]::Size -eq 4) { $regpath = 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' } else { $regpath = @( 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*' ) } Get-ItemProperty $regpath | . { process { if ($_.DisplayName -and $_.UninstallString) { $_ } } } | Select DisplayName, Publisher, InstallDate, DisplayVersion, UninstallString | Sort DisplayName}try { $file = 'Ninite+Agent.msi' $link = "https://niniteice.s3.eu-west-2.amazonaws.com/Ninite+Agent.msi" $software = 'Ninite+Agent' $result = Get-InstalledApps | Where-Object { $_.DisplayName -like $appToMatch } If ($result -eq $null) { Write-Host "'$software' NOT is installed."; Write-Host "Starting download"; $tmp = "c:\Windows\System32\$file" Write-Host "tmp --> "+$tmp; $client = New-Object System.Net.WebClient $client.DownloadFile($link, $tmp) msiexec /i $tmp /qn Remove-Item $tmp Write-Host "Tried installing $soft_name" } else { Write-Host "'$software' is already installed." }}catch { $ErrorMessage = $_.Exception.Message Write-Host "An error occurred." Write-Host $ErrorMessage;}
  8. Hey Does anyone know of save that you can save as pdf with the online version of excel. i cant see any option or any info on this. Thanks
  9. So i have decided to go for Synology DS1821 with the built in backup for o365 this offer unlimited and we are going for around 10TB of space on this. it seem a basic solution for an extra layer of safety.
  10. Hey Everyone Our management team has asked me to put some 365 backup in place in the case someone deletes a file and we go over the 30 days. I have been looking at Veeam 365 backup and i am testing this out but i have noticed the speed is not great maybe due to our own internal network. is anyone else using veeam 365 backup to onpremis ? Anyone else using other solutions.
  11. Hey just seeing if someone can help me out, i have been asked to look at how our admin do a mail merge with an attachment. now i can do a mail merge but don't know how to include the attachment is there a plugin needed or something. Thanks
  12. Lastpass for password management and Panda or AV
  13. Hey All I am having little nightmare getting rid of flash, i have run the flash removal tool and windows updates but our Qual agent is still reporting [TABLE=width: 771] [TR] [TD=width: 643]( EOL/Obsolete Software: Adobe Flash Player Detecte[/TD] [TD=width: 64]Active[/TD] [TD=width: 64]Vuln)[/TD] [/TR] [/TABLE] I have tried the following #Remove reg keys Remove-Item -Path HKCU:\Software\MacroMedia -Recurse Remove-Item -Path HKCU:\Software\Wow6432Node\MacroMedia - Recurse
  14. Hey I am trying to get hold of service pack for my GEN8 server so i can install server 2016 does anyone have a copy or link to one. hp site is no good. thanks
  15. Hey Am after a way of installing a .MSU package for all the laptops we have at home. We have some management tool ( Atera) . The package is the flash removal Thanks
  16. Hi , We went thought CE and CE+ they also did risk assessment for us as well, if you want the contact pm me i send his email address.
  17. Hey i have been trying to get flash player removed from lots of pcs as our Qualis reports are showing this up, i have deleted the macro folder but it seem to still be showing as a vulnerability. any ideas on a powershell or anything else i can try Thanks
  18. we only had 1 dc, and i cant restore the back either to pull of the AD stuff to restore.
  19. Hey i had a raid fail and after it had repaired and rebuild i thought my dc would be ok but looks like there is an issue starting it up, I am getting failed to change state. I also get an error when inspecting the disk as well. I have attached few pics
  20. Hey Just after some help getting ofline smart storage working, i have downloaded the ISO ( Drivers & software | Offline HP Smart Storage Administrator (HP SSA) (hpe.com)) and i have used Rufus to burn the iso to usb but i seem to get the following error when booting to the usb. [TABLE="width: 718"] [TABLE="class: TextCalloutBox"] [h=2][/h]
  21. We had this company do our ce + they done a pre audit and runs some software on the end points and network and let your know recommendations amazing work. Very fair and trust worth and they are small company. https://cybersecurities.uk/
  22. Hi All I have been trying to get .net framwork 3.5 install on a few pc but i am having a nightmare trying to get it installed this error keeps cropping up.
  23. seem to have this issue now
  24. Hi All Thanks for you help, i have managed to get the powershell working, but the script to set the permission for the students doesnt seem to work ? Has anyone applied permissions via Powershell to a group such as "Students" Thanks
  25. Hi I would be grateful of any info, I am like Andy the report side is a nightmare i am doing 10 different reports. Thanks
×
×
  • Create New...