Jump to content

Trips

Members
  • Posts

    47
  • Joined

  • Last visited

Everything posted by Trips

  1. Nice to meet you. Enjoy getting to know you.
  2. I'm a member there. Will the accounts be merged?
  3. Check your task. Make sure it's set up correctly. Make sure you set the proper triggers. Post back if you need more help.
  4. Make sure to check the compatibility of the extensions. Also make sure all the drivers are up to date. Lastly check and make sure permissions are correct. If you need more help post back.
  5. I might have to check this out. I like shooters.
  6. It was useless anyway. Use InPrivate browsing or a VPN if you want to be anonymous.
  7. Maybe these alternatives will help. Here are some potential equivalent certifications that could be accepted instead of the discontinued System Center certification: 1. Microsoft Certified: Azure Administrator Associate Focuses on managing Azure subscriptions, implementing storage solutions, and configuring virtual networks. 2. Microsoft Certified: Azure Solutions Architect Expert Validates skills in designing solutions on Azure, including compute, network, storage, and security. 3. Microsoft Certified: Microsoft 365 Certified: Enterprise Administrator Expert Covers managing Microsoft 365 services, including identity, security, compliance, and supporting technologies. 4. Microsoft Certified: Windows Server Hybrid Administrator Associate Focuses on managing Windows Server workloads on-premises and in Azure. 5. MCSE: Cloud Platform and Infrastructure Although this is a legacy certification, it covers core skills in cloud technologies, virtualization, and networking. 6. CompTIA Cloud+ A vendor-neutral certification that validates cloud computing skills and knowledge. 7. AWS Certified Solutions Architect Demonstrates expertise in designing distributed systems on AWS, which can be relevant for cloud-based infrastructures. 8. VMware Certified Professional (VCP) Focuses on virtualization technologies, which are essential in modern data centers. Considerations Relevance: Ensure the certification aligns with the specific requirements of the tender. Industry Standards: Check if the certification is recognized within the industry. Updates: Verify if there are any new certifications introduced that might be more relevant. These certifications can demonstrate an engineer's proficiency in managing and maintaining modern IT environments, similar to the skills covered by the System Center certification.
  8. You can try these steps. To delegate permissions to a group while protecting an object from accidental deletion, you typically follow these steps in a Windows environment, particularly using Active Directory. Here’s a structured approach: Steps to Delegate Permissions Open Active Directory Users and Computers (ADUC): Press Windows + R, type dsa.msc, and hit Enter. Locate the Object: Navigate to the organizational unit (OU) or container where the object (like a user, group, or computer) is located. Right-click on the Object: Select Properties. Go to the Security Tab: Click on the Security tab to manage permissions. Add the Group: Click on Add. Enter the name of the group you want to delegate permissions to, and click Check Names to verify. Assign Permissions: Select the group and click on Advanced. Click on Add to create a new permission entry. Select Principal (the group you added). In the Type dropdown, choose Allow. In the Permissions section, check the permissions you want to delegate (like Read, Write, Create, etc.). Protecting the Object from Accidental Deletion Go to the Object's Properties: While still in the properties of the object, navigate to the Object tab. Check the "Protect object from accidental deletion" Option: Look for the checkbox labeled Protect object from accidental deletion. Check this box to enable protection. Apply Changes: Click OK to apply the changes. Summary Delegated Permissions: Allows the specified group to perform certain actions on the object. Accidental Deletion Protection: Prevents the object from being deleted accidentally by users who have permissions. Note Make sure to test the configuration to ensure that the permissions are working as intended and that the object is protected from deletion. Let us know if it helps you.
  9. It is still very much in use by millions of people. Old habits die hard. Skype is still the best to use to communicate with old friends and family.
  10. I would be surprised if this causes anyone an issue. TPM 2 has been around for years. Most computers or laptops manufactured since 2016 or so have the chip on board. Heck even VMWare supports it in virtual machines.
  11. Thanks.
  12. It's not possible to upgrade the video processor in laptops any longer. The bios setting was removed in most. In any case on laptops that did have the option it was always set out of the factory to max value.
  13. I was a member there. Will my account be merged?
  14. Still getting them. Very intermittent. Not as bad as the other day.
  15. I'm in 1
  16. I still have every bookmark saved. Years worth. From time to time I check them. Happened to hit extremetechsupport.com and here you are. Good to be back.
  17. Creating GUIs in PowerShell that utilize Microsoft dialog boxes can be done using Windows Forms or WPF. Below, I'll provide a simple example using Windows Forms to demonstrate how to create a GUI with dialog boxes. Example: Simple PowerShell GUI with Dialog Boxes This example creates a form with a button that, when clicked, opens a message box and a file dialog. # Load the required assembly Add-Type -AssemblyName System.Windows.Forms # Create the form $form = New-Object System.Windows.Forms.Form $form.Text = "PowerShell GUI Example" $form.Size = New-Object System.Drawing.Size(300,200) # Create a button $buttonMessageBox = New-Object System.Windows.Forms.Button $buttonMessageBox.Text = "Show Message" $buttonMessageBox.Location = New-Object System.Drawing.Point(50,50) $buttonMessageBox.Add_Click({ [System.Windows.Forms.MessageBox]::Show("Hello, this is a message box!", "Message Box Title") }) # Create another button for file dialog $buttonFileDialog = New-Object System.Windows.Forms.Button $buttonFileDialog.Text = "Open File Dialog" $buttonFileDialog.Location = New-Object System.Drawing.Point(50,100) $buttonFileDialog.Add_Click({ $openFileDialog = New-Object System.Windows.Forms.OpenFileDialog $openFileDialog.Title = "Select a File" $openFileDialog.Filter = "All Files (*.*)|*.*" if ($openFileDialog.ShowDialog() -eq [System.Windows.Forms.DialogResult]::OK) { [System.Windows.Forms.MessageBox]::Show("You selected: " + $openFileDialog.FileName, "File Selected") } }) # Add buttons to the form $form.Controls.Add($buttonMessageBox) $form.Controls.Add($buttonFileDialog) # Show the form $form.Add_Shown({$form.Activate()}) [void]$form.ShowDialog() How to Run the Script Open PowerShell ISE or any PowerShell editor. Copy and paste the script above into the editor. Run the script. Description of the Code Add-Type: Loads the Windows Forms assembly. Form: Creates a new form window. Buttons: Two buttons are created; one shows a message box and the other opens a file dialog. Event Handlers: The Add_Click method attaches event handlers to the buttons to define what happens when they are clicked. MessageBox: Displays a message box with a custom message. OpenFileDialog: Opens a file dialog for the user to select a file. This script provides a basic framework for creating GUIs in PowerShell using Microsoft dialog boxes. You can expand upon this by adding more controls and functionalities as needed.
  18. It is definitely broken. Took over my login screen. As soon as I went to add my login info it would send me to twitter. Very annoying. I hope you rethink having it turned on.
  19. If you're unable to get heap information from full .NET dumps, here are some steps you can follow to troubleshoot and resolve the issue: 1. Use the Right Tools Ensure you are using the appropriate tools for analyzing .NET dumps, such as: WinDbg: A powerful debugger that can handle .NET memory dumps. dotnet-dump: A command-line tool specifically for .NET Core applications. Visual Studio: It can open and analyze .NET memory dumps. 2. Load the Correct SOS Extension In WinDbg, make sure to load the SOS debugging extension properly: .loadby sos clr If you're using .NET Core, you might need to load the SOS extension differently: .load clrmd.dll 3. Check Dump Type Ensure you are working with a full memory dump. Mini dumps may not contain the necessary heap information. Use the command: !analyze -v This will give you a detailed analysis and confirm if it's a full dump. 4. Verify CLR Version Make sure you are using the correct version of the SOS extension that matches the CLR version of the dump. Use: !clrstack This can help verify the CLR version. 5. Use the Right Commands To get heap information, use: !dumpheap -stat This command provides statistics about the managed heap. 6. Investigate Possible Corruption If the dump file is corrupted, you may not be able to extract heap information. Try to capture a new dump if possible. 7. Check for Permissions Ensure that you have the necessary permissions to analyze the dump file. Run your tools as an administrator if needed. 8. Consult Documentation Refer to the official Microsoft documentation for more detailed instructions on using WinDbg or other tools with .NET dumps. 9. Community Support If issues persist, consider reaching out to community forums or support channels, such as Stack Overflow or the Microsoft Q&A platform, providing details about the issue for further assistance. By following these steps, you should be able to gather heap information from your full .NET dumps
  20. To find the voltage of the transformer required for your 19" Weseri monitor (Model L19X BC1900S), you can follow these steps: Check the Monitor's Manual: The user manual or technical specifications should list the required voltage and power specifications. Look for Labels: Inspect the back or bottom of the monitor for any labels that might indicate the input voltage and current requirements. Manufacturer's Website: Visit the Weseri website or contact their customer support for detailed specifications regarding the model. Universal Power Supply: If you cannot find the specific information, you might consider using a universal power supply with adjustable voltage settings. Set it to common monitor voltages (like 12V or 15V) and test carefully. Online Forums: Check online forums or communities dedicated to electronics or monitors, as other users may have encountered the same model and can provide insights. If you still cannot find the information, you might need to measure the voltage output of the existing transformer (if available) using a multimeter, but ensure safety precautions are followed.
  21. I know this is an old thread, I see no one helped with it . I will give it a try. Maybe try these steps to troubleshoot the problem. Here are some possibilities that could be causing the issue: Antivirus/Firewall Software: Security software can sometimes block Outlook’s access to the internet or its ability to perform certain operations. Temporarily disabling it can help identify if it's the cause. Add-ins: Outlook add-ins can sometimes cause issues. Disabling all add-ins and then re-enabling them one by one can help pinpoint the problem. Corrupted Outlook Profile: A corrupted Outlook profile can lead to various issues. Creating a new profile may resolve the problems. Windows Updates: Pending or problematic Windows updates can affect Outlook's functionality. Ensuring Windows is fully updated can help. Network Issues: If the internet connection is unstable, it may affect Outlook's ability to sync with the server. Conflicting Software: Other email clients or software that manage emails may conflict with Outlook. Ensuring only one email client is managing the same account can help. Cached Data: Corrupted cached data can lead to issues. Clearing the cache or resetting the application may resolve this. Investigating these areas can help identify and resolve any conflicts affecting Outlook's performance. Post back if you need more help.
  22. This is the only way I install Windows. With Linux I'll run it off the USB stick.
  23. I get intermittent 500 errors. Happens at various times. Post my last topic I got the error. Topic posted. Still had the error.
×
×
  • Create New...