N
N
Nikolay Ivanchenko2016-12-07 14:06:07
System administration
Nikolay Ivanchenko, 2016-12-07 14:06:07

Where can I find the recycle bins for the server?

Good afternoon!
Such question: the HP ML350 GEN9 server came. It has 6 slots for drive cages. The server had one basket for 8 SAS 2.5 disks. I plan to order more discs, but I need baskets. Where to find and order them (baskets)? Baskets for 8 drives SAS 2.5.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
Макс, 2016-12-07
@Krokozyabla

например здесь

АртемЪ, 2016-12-07
@Jump Куратор тега Системное администрирование

Задайте этот вопрос тому кто продал вам сервер.

K
kot2566, 2017-04-10
@danij_com

I myself vaguely understand what I propose, but after the manipulations below it should work.
1) Go to https://vknet.github.io download the vknet library as a zip file and unpack it
2) Copy the entire project (maybe not all, xs) to your project folder, (like this prntscr.com/eusnut ( I copied it inside the test folder)
3) Open your project
4) In the Solution Explorer Add an existing project prntscr.com/eusokj
5) Select VkNet.UWP.csproj (it's inside \test\VkNet.UWP)
6) Further in the Assembly prntscr.com /euspa2
7) Next, add the link prntscr.com/euspi6 prntscr.com/euspqh
8) Delete the old linkprntscr.com/eusq1b
9) Go here https://vk.com/editapp?act=create and create a new Standalone application
10) Profit prntscr.com/eusr3i
11) Change methods a bit

private void button1_Click(object sender, EventArgs e)
        {
            int appID = 123456;
            string email = "login";
            string password = "pass";
            Settings settings = Settings.All;

            vkApi.Authorize( new ApiAuthParams {
                ApplicationId = (ulong)appID,
                Login = email,
                Password = password,
                Settings = settings
            });
            if (vkApi.IsAuthorized)
            {
                MessageBox.Show(vkApi.UserId.ToString());
            }
            GetFriends();

        }

        public void GetFriends()
        {
            ProfileFields pf = ProfileFields.FirstName | ProfileFields.LastName;
            var users = vkApi.Friends.Get(new FriendsGetParams { UserId = vkApi.UserId, Fields = pf, Count=10 });
            foreach (var friend in users)
            {
                ListFriends.Items.Add(friend.FirstName + " " + friend.LastName);
            }
        }

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question